mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
20 lines
340 B
JavaScript
20 lines
340 B
JavaScript
|
import js from "@eslint/js";
|
||
|
import eslintConfigPrettier from "eslint-config-prettier";
|
||
|
|
||
|
export default [
|
||
|
js.configs.recommended,
|
||
|
eslintConfigPrettier,
|
||
|
{
|
||
|
languageOptions: {
|
||
|
ecmaVersion: 2024,
|
||
|
globals: {
|
||
|
document: false,
|
||
|
TYPO3: "readonly"
|
||
|
},
|
||
|
},
|
||
|
ignores: [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|
||
|
]
|