mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
579 B
22 lines
579 B
import js from "@eslint/js";
|
|
import globals from "globals";
|
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
|
|
|
export default [
|
|
js.configs.recommended,
|
|
eslintPluginPrettierRecommended,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
$: "readonly",
|
|
Intercooler: "readonly",
|
|
Promise: "readonly",
|
|
Tildes: "readonly",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
ignores: ["static/js/third_party*", "static/js/tildes.js"],
|
|
},
|
|
];
|