Skip to content

Commit

Permalink
Initial commit for migrating to Next app
Browse files Browse the repository at this point in the history
  • Loading branch information
ulasturann committed Mar 2, 2023
1 parent 1603163 commit 7f3ed56
Show file tree
Hide file tree
Showing 259 changed files with 28,270 additions and 18,197 deletions.
34 changes: 34 additions & 0 deletions .eslintrc.json
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" }
]
}
}
51 changes: 37 additions & 14 deletions .gitignore
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
3 changes: 0 additions & 3 deletions .htaccess

This file was deleted.

18 changes: 15 additions & 3 deletions .npmignore
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
9 changes: 9 additions & 0 deletions .prettierignore
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
10 changes: 10 additions & 0 deletions .prettierrc.json
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
}
1 change: 0 additions & 1 deletion 404.html

This file was deleted.

159 changes: 0 additions & 159 deletions CHANGELOG.md

This file was deleted.

35 changes: 0 additions & 35 deletions Gemfile

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE.md

This file was deleted.

Loading

0 comments on commit 7f3ed56

Please sign in to comment.