forked from primefaces/primeflex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit for migrating to Next app
- Loading branch information
1 parent
1603163
commit 7f3ed56
Showing
259 changed files
with
28,270 additions
and
18,197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"plugins": ["@typescript-eslint", "jest-dom"], | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"rules": { | ||
"@next/next/no-img-element": "off", | ||
"react/display-name": "off", | ||
"react/no-unescaped-entities": "off", | ||
"@typescript-eslint/no-empty-function": "off", | ||
"@typescript-eslint/no-empty-interface": "off", | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"no-console": 2, | ||
"padding-line-between-statements": [ | ||
"error", | ||
{ "blankLine": "always", "prev": ["const", "let", "var"], "next": "*" }, | ||
{ | ||
"blankLine": "any", | ||
"prev": ["const", "let", "var"], | ||
"next": ["const", "let", "var"] | ||
}, | ||
{ "blankLine": "any", "prev": ["case", "default"], "next": "break" }, | ||
{ "blankLine": "any", "prev": "case", "next": "case" }, | ||
{ "blankLine": "always", "prev": "*", "next": "return" }, | ||
{ "blankLine": "always", "prev": "block", "next": "*" }, | ||
{ "blankLine": "always", "prev": "*", "next": "block" }, | ||
{ "blankLine": "always", "prev": "block-like", "next": "*" }, | ||
{ "blankLine": "always", "prev": "*", "next": "block-like" } | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,41 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
.sass-cache | ||
.jekyll-cache | ||
.jekyll-metadata | ||
vendor | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
/vscode | ||
/.vscode | ||
/idea | ||
/.idea | ||
/.sass-cache | ||
.DS_STORE | ||
.idea | ||
_site | ||
Gemfile.lock | ||
package-lock.json | ||
|
||
dist/src | ||
dist/primeflex.scss | ||
dist/themes/*.scss | ||
# testing | ||
/coverage | ||
|
||
node_modules | ||
# next.js | ||
/.next/ | ||
/out/ | ||
tsconfig.tsbuildinfo | ||
|
||
# production | ||
/dist | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# vercel | ||
.vercel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
.sass-cache | ||
node_modules | ||
.git | ||
/dist | ||
public | ||
src | ||
.gitignore | ||
DS_Store | ||
package-lock.json | ||
.npmignore | ||
.nvmrc | ||
gulpfile.js | ||
yarn.lock | ||
.github | ||
exports | ||
vscode | ||
.vscode | ||
.editorconfig | ||
package-lock.json | ||
npm-shrinkwrap.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Ignore artifacts: | ||
build | ||
coverage | ||
dist | ||
out | ||
public | ||
styles | ||
node_modules | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"useTabs": false, | ||
"tabWidth": 4, | ||
"trailingComma": "none", | ||
"semi": true, | ||
"singleQuote": true, | ||
"jsxSingleQuote": false, | ||
"printWidth": 250, | ||
"bracketSameLine": false | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.