mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
4be4507568
With this configuration, ESLint will no longer complain about the `TYPO3` and `$` global, `define()` calls, etc. It will also allow the use of `const`. Resolves: #475
20 lines
271 B
JSON
20 lines
271 B
JSON
{
|
|
"root": true,
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true,
|
|
"amd": true,
|
|
"jquery": true
|
|
},
|
|
"globals": {
|
|
"TYPO3": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 8
|
|
}
|
|
}
|