mirror of
https://github.com/foomo/contentfultree.git
synced 2025-10-16 12:25:41 +00:00
36 lines
677 B
JSON
36 lines
677 B
JSON
{
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
"browser": true
|
|
},
|
|
"extends": [
|
|
"plugin:react/recommended",
|
|
"standard-with-typescript",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"ignorePatterns": [
|
|
"**/dist/**",
|
|
"**/node_modules/**",
|
|
".eslintrc.json",
|
|
"tsconfig.json",
|
|
"package.json"
|
|
],
|
|
"overrides": [],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module",
|
|
"project": "tsconfig.json"
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"prettier",
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/strict-boolean-expressions": 0,
|
|
"prettier/prettier": "error"
|
|
}
|
|
}
|