Skip to content

Commit

Permalink
Move configs into package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
remko committed Nov 12, 2023
1 parent b206ba9 commit 8c85589
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 79 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

29 changes: 0 additions & 29 deletions .eslintrc.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .nycrc.json

This file was deleted.

3 changes: 0 additions & 3 deletions .prettierrc

This file was deleted.

37 changes: 0 additions & 37 deletions .vscode/settings.json

This file was deleted.

File renamed without changes.
59 changes: 58 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,62 @@
"datastore",
"emulator",
"gui"
]
],
"nyc": {
"all": true,
"reporter": [
"text",
"html"
],
"include": [
".esbuild-test/**"
],
"exclude": [],
"excludeAfterRemap": false
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"prettier",
"react",
"@typescript-eslint"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"react/display-name": 0,
"react/prop-types": 0
},
"ignorePatterns": [
"public/dist",
"babel.config.js"
]
},
"prettier": {
"trailingComma": "all"
}
}

0 comments on commit 8c85589

Please sign in to comment.