12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "env": {
- "node": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:@typescript-eslint/recommended"
- ],
- "ignorePatterns": [
- "out/**",
- "node_modules/**",
- "prism.js"
- ],
- "overrides": [
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "ecmaVersion": "latest",
- "sourceType": "module"
- },
- "plugins": [
- "@typescript-eslint",
- "@typescript-eslint/tslint"
- ],
- "rules": {
- "@typescript-eslint/no-empty-function": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/no-unused-vars": "off",
- "@typescript-eslint/no-inferrable-types": "off",
- "@typescript-eslint/ban-types": "warn",
- "no-async-promise-executor": "warn",
- "no-inner-declarations": "warn",
- "no-prototype-builtins": "warn",
- "no-constant-condition": "warn",
- "prefer-const": "warn",
- "no-useless-escape": "off",
- "no-var": "off",
- "indent": [
- "off",
- "tab"
- ],
- "linebreak-style": [
- "off",
- "windows"
- ],
- "quotes": [
- "warn",
- "double"
- ],
- "semi": [
- "error",
- "always"
- ]
- }
- }
|