mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 15:47:48 +01:00
26 lines
573 B
JSON
26 lines
573 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:jest/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"rules": {
|
|
"react/jsx-filename-extension": [
|
|
1,
|
|
{
|
|
"extensions": [".js", ".jsx"]
|
|
}
|
|
],
|
|
"linebreak-style": "off",
|
|
"react/forbid-prop-types": "off",
|
|
"node/no-unsupported-features/es-syntax": ["off"],
|
|
"node/no-unsupported-features/es-builtins": ["off"],
|
|
"node/no-unsupported-features/node-builtins": ["off"],
|
|
"react/display-name": ["warn"],
|
|
"no-console": "warn"
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
}
|
|
}
|