toot-script-condivisione-su.../.eslintrc.json

31 lines
672 B
JSON
Raw Normal View History

2023-09-02 16:17:15 +02:00
// This ESLint config is part of Share₂Fedi
// https://github.com/kytta/share2fedi
//
// SPDX-FileCopyrightText: © 2023 Nikita Karamov <me@kytta.dev>
// SPDX-License-Identifier: CC0-1.0
2023-03-01 12:12:17 +01:00
{
2023-03-17 21:08:08 +01:00
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:unicorn/recommended",
"plugin:astro/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
2023-03-01 12:12:17 +01:00
"env": {
"browser": true
},
"overrides": [
{
2023-03-17 21:08:08 +01:00
"files": ["*.astro"],
"parser": "astro-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"extraFileExtensions": [".astro"]
}
2023-03-01 12:12:17 +01:00
}
]
}