mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 02:56:12 +01:00
f725ef0b03
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.2.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.57.0...v9.2.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
340 B
JavaScript
19 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"
|
|
]
|
|
}
|
|
]
|