Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
parkpow
GitHub Repository: parkpow/deep-license-plate-recognition
Path: blob/master/docker/dd-extension/ui/eslint.config.js
1094 views
1
import pluginJs from "@eslint/js";
2
import pluginReact from "eslint-plugin-react";
3
import globals from "globals";
4
import tseslint from "typescript-eslint";
5
6
export default [
7
{
8
files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"],
9
},
10
{
11
languageOptions: {
12
globals: globals.browser,
13
},
14
},
15
{
16
ignores: ["build/"],
17
},
18
{
19
rules: {
20
// "@typescript-eslint/no-explicit-any": "off",
21
},
22
},
23
pluginJs.configs.recommended,
24
...tseslint.configs.recommended,
25
pluginReact.configs.flat.recommended,
26
];
27
28