Skip to content

Instantly share code, notes, and snippets.

@RyanParsley
Created November 16, 2023 14:07
Show Gist options
  • Save RyanParsley/ea66921ddc7fbf45e2ebcad1bd74030f to your computer and use it in GitHub Desktop.
Save RyanParsley/ea66921ddc7fbf45e2ebcad1bd74030f to your computer and use it in GitHub Desktop.
{
"env": {},
"globals": {},
"parser": "/Users/ryan/Projects/lint-macguffin-2-electric-boogaloo/node_modules/@typescript-eslint/parser/dist/index.js",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"@angular-eslint",
"@angular-eslint/template"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@angular-eslint/component-class-suffix": [
"error"
],
"@angular-eslint/contextual-lifecycle": [
"error"
],
"@angular-eslint/directive-class-suffix": [
"error"
],
"@angular-eslint/no-empty-lifecycle-method": [
"error"
],
"@angular-eslint/no-host-metadata-property": [
"error"
],
"@angular-eslint/no-input-rename": [
"error"
],
"@angular-eslint/no-inputs-metadata-property": [
"error"
],
"@angular-eslint/no-output-native": [
"error"
],
"@angular-eslint/no-output-on-prefix": [
"error"
],
"@angular-eslint/no-output-rename": [
"error"
],
"@angular-eslint/no-outputs-metadata-property": [
"error"
],
"@angular-eslint/use-pipe-transform-interface": [
"error"
],
"@angular-eslint/use-lifecycle-interface": [
"warn"
],
"@typescript-eslint/ban-ts-comment": [
"error"
],
"@typescript-eslint/ban-types": [
"error"
],
"no-array-constructor": [
"off"
],
"@typescript-eslint/no-array-constructor": [
"error"
],
"@typescript-eslint/no-duplicate-enum-values": [
"error"
],
"@typescript-eslint/no-explicit-any": [
"error"
],
"@typescript-eslint/no-extra-non-null-assertion": [
"error"
],
"no-loss-of-precision": [
"off"
],
"@typescript-eslint/no-loss-of-precision": [
"error"
],
"@typescript-eslint/no-misused-new": [
"error"
],
"@typescript-eslint/no-namespace": [
"error"
],
"@typescript-eslint/no-non-null-asserted-optional-chain": [
"error"
],
"@typescript-eslint/no-this-alias": [
"error"
],
"@typescript-eslint/no-unnecessary-type-constraint": [
"error"
],
"@typescript-eslint/no-unsafe-declaration-merging": [
"error"
],
"no-unused-vars": [
"off"
],
"@typescript-eslint/no-unused-vars": [
"error"
],
"@typescript-eslint/no-var-requires": [
"error"
],
"@typescript-eslint/prefer-as-const": [
"error"
],
"@typescript-eslint/triple-slash-reference": [
"error"
],
"constructor-super": [
"off"
],
"getter-return": [
"off"
],
"no-const-assign": [
"off"
],
"no-dupe-args": [
"off"
],
"no-dupe-class-members": [
"off"
],
"no-dupe-keys": [
"off"
],
"no-func-assign": [
"off"
],
"no-import-assign": [
"off"
],
"no-new-symbol": [
"off"
],
"no-obj-calls": [
"off"
],
"no-redeclare": [
"off"
],
"no-setter-return": [
"off"
],
"no-this-before-super": [
"off"
],
"no-undef": [
"off"
],
"no-unreachable": [
"off"
],
"no-unsafe-negation": [
"off"
],
"no-var": [
"error"
],
"prefer-const": [
"error"
],
"prefer-rest-params": [
"error"
],
"prefer-spread": [
"error"
],
"for-direction": [
"error"
],
"no-async-promise-executor": [
"error"
],
"no-case-declarations": [
"error"
],
"no-class-assign": [
"error"
],
"no-compare-neg-zero": [
"error"
],
"no-cond-assign": [
"error"
],
"no-constant-condition": [
"error"
],
"no-control-regex": [
"error"
],
"no-debugger": [
"error"
],
"no-delete-var": [
"error"
],
"no-dupe-else-if": [
"error"
],
"no-duplicate-case": [
"error"
],
"no-empty": [
"error"
],
"no-empty-character-class": [
"error"
],
"no-empty-pattern": [
"error"
],
"no-ex-assign": [
"error"
],
"no-extra-boolean-cast": [
"error"
],
"no-extra-semi": [
"error"
],
"no-fallthrough": [
"error"
],
"no-global-assign": [
"error"
],
"no-inner-declarations": [
"error"
],
"no-invalid-regexp": [
"error"
],
"no-irregular-whitespace": [
"error"
],
"no-misleading-character-class": [
"error"
],
"no-mixed-spaces-and-tabs": [
"error"
],
"no-nonoctal-decimal-escape": [
"error"
],
"no-octal": [
"error"
],
"no-prototype-builtins": [
"error"
],
"no-regex-spaces": [
"error"
],
"no-self-assign": [
"error"
],
"no-shadow-restricted-names": [
"error"
],
"no-sparse-arrays": [
"error"
],
"no-unexpected-multiline": [
"error"
],
"no-unsafe-finally": [
"error"
],
"no-unsafe-optional-chaining": [
"error"
],
"no-unused-labels": [
"error"
],
"no-useless-backreference": [
"error"
],
"no-useless-catch": [
"error"
],
"no-useless-escape": [
"error"
],
"no-with": [
"error"
],
"require-yield": [
"error"
],
"use-isnan": [
"error"
],
"valid-typeof": [
"error"
]
},
"settings": {},
"ignorePatterns": [
"projects/**/*"
]
}
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"globals": {},
"parser": "/Users/ryan/Projects/lint-macguffin/node_modules/@typescript-eslint/parser/dist/index.js",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": [],
"tsconfigRootDir": "/Users/ryan/Projects/lint-macguffin"
},
"plugins": [
"@nx",
"@typescript-eslint",
"@angular-eslint",
"@angular-eslint/template"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "lintMacguffin",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "lint-macguffin",
"style": "kebab-case"
}
],
"@angular-eslint/component-class-suffix": [
"error"
],
"@angular-eslint/contextual-lifecycle": [
"error"
],
"@angular-eslint/directive-class-suffix": [
"error"
],
"@angular-eslint/no-empty-lifecycle-method": [
"error"
],
"@angular-eslint/no-host-metadata-property": [
"error"
],
"@angular-eslint/no-input-rename": [
"error"
],
"@angular-eslint/no-inputs-metadata-property": [
"error"
],
"@angular-eslint/no-output-native": [
"error"
],
"@angular-eslint/no-output-on-prefix": [
"error"
],
"@angular-eslint/no-output-rename": [
"error"
],
"@angular-eslint/no-outputs-metadata-property": [
"error"
],
"@angular-eslint/use-pipe-transform-interface": [
"error"
],
"@angular-eslint/use-lifecycle-interface": [
"warn"
],
"@typescript-eslint/explicit-member-accessibility": [
"off"
],
"@typescript-eslint/explicit-module-boundary-types": [
"off"
],
"@typescript-eslint/explicit-function-return-type": [
"off"
],
"@typescript-eslint/no-parameter-properties": [
"off"
],
"curly": [
0
],
"lines-around-comment": [
0
],
"max-len": [
0
],
"no-confusing-arrow": [
0
],
"no-mixed-operators": [
0
],
"no-tabs": [
0
],
"no-unexpected-multiline": [
0
],
"quotes": [
0
],
"@typescript-eslint/lines-around-comment": [
0
],
"@typescript-eslint/quotes": [
0
],
"babel/quotes": [
0
],
"array-bracket-newline": [
"off"
],
"array-bracket-spacing": [
"off"
],
"array-element-newline": [
"off"
],
"arrow-parens": [
"off"
],
"arrow-spacing": [
"off"
],
"block-spacing": [
"off"
],
"brace-style": [
"off"
],
"comma-dangle": [
"off"
],
"comma-spacing": [
"off"
],
"comma-style": [
"off"
],
"computed-property-spacing": [
"off"
],
"dot-location": [
"off"
],
"eol-last": [
"off"
],
"func-call-spacing": [
"off"
],
"function-call-argument-newline": [
"off"
],
"function-paren-newline": [
"off"
],
"generator-star-spacing": [
"off"
],
"implicit-arrow-linebreak": [
"off"
],
"indent": [
"off"
],
"key-spacing": [
"off"
],
"keyword-spacing": [
"off"
],
"linebreak-style": [
"off"
],
"max-statements-per-line": [
"off"
],
"multiline-ternary": [
"off"
],
"newline-per-chained-call": [
"off"
],
"new-parens": [
"off"
],
"no-extra-parens": [
"off"
],
"no-extra-semi": [
"off"
],
"no-floating-decimal": [
"off"
],
"no-mixed-spaces-and-tabs": [
"off"
],
"no-multi-spaces": [
"off"
],
"no-multiple-empty-lines": [
"off"
],
"no-trailing-spaces": [
"off"
],
"no-whitespace-before-property": [
"off"
],
"nonblock-statement-body-position": [
"off"
],
"object-curly-newline": [
"off"
],
"object-curly-spacing": [
"off"
],
"object-property-newline": [
"off"
],
"one-var-declaration-per-line": [
"off"
],
"operator-linebreak": [
"off"
],
"padded-blocks": [
"off"
],
"quote-props": [
"off"
],
"rest-spread-spacing": [
"off"
],
"semi": [
"off"
],
"semi-spacing": [
"off"
],
"semi-style": [
"off"
],
"space-before-blocks": [
"off"
],
"space-before-function-paren": [
"off"
],
"space-in-parens": [
"off"
],
"space-infix-ops": [
"off"
],
"space-unary-ops": [
"off"
],
"switch-colon-spacing": [
"off"
],
"template-curly-spacing": [
"off"
],
"template-tag-spacing": [
"off"
],
"wrap-iife": [
"off"
],
"wrap-regex": [
"off"
],
"yield-star-spacing": [
"off"
],
"@babel/object-curly-spacing": [
"off"
],
"@babel/semi": [
"off"
],
"@typescript-eslint/block-spacing": [
"off"
],
"@typescript-eslint/brace-style": [
"off"
],
"@typescript-eslint/comma-dangle": [
"off"
],
"@typescript-eslint/comma-spacing": [
"off"
],
"@typescript-eslint/func-call-spacing": [
"off"
],
"@typescript-eslint/indent": [
"off"
],
"@typescript-eslint/key-spacing": [
"off"
],
"@typescript-eslint/keyword-spacing": [
"off"
],
"@typescript-eslint/member-delimiter-style": [
"off"
],
"@typescript-eslint/no-extra-parens": [
"off"
],
"@typescript-eslint/no-extra-semi": [
"off"
],
"@typescript-eslint/object-curly-spacing": [
"off"
],
"@typescript-eslint/semi": [
"off"
],
"@typescript-eslint/space-before-blocks": [
"off"
],
"@typescript-eslint/space-before-function-paren": [
"off"
],
"@typescript-eslint/space-infix-ops": [
"off"
],
"@typescript-eslint/type-annotation-spacing": [
"off"
],
"babel/object-curly-spacing": [
"off"
],
"babel/semi": [
"off"
],
"generator-star": [
"off"
],
"indent-legacy": [
"off"
],
"no-arrow-condition": [
"off"
],
"no-comma-dangle": [
"off"
],
"no-reserved-keys": [
"off"
],
"no-space-before-semi": [
"off"
],
"no-spaced-func": [
"off"
],
"no-wrap-func": [
"off"
],
"space-after-function-name": [
"off"
],
"space-after-keywords": [
"off"
],
"space-before-function-parentheses": [
"off"
],
"space-before-keywords": [
"off"
],
"space-in-brackets": [
"off"
],
"space-return-throw-case": [
"off"
],
"space-unary-word-ops": [
"off"
],
"react/jsx-space-before-closing": [
"off"
],
"@typescript-eslint/ban-ts-comment": [
"error"
],
"@typescript-eslint/ban-types": [
"error"
],
"no-array-constructor": [
"off"
],
"@typescript-eslint/no-array-constructor": [
"error"
],
"@typescript-eslint/no-duplicate-enum-values": [
"error"
],
"@typescript-eslint/no-explicit-any": [
"error"
],
"@typescript-eslint/no-extra-non-null-assertion": [
"error"
],
"no-loss-of-precision": [
"off"
],
"@typescript-eslint/no-loss-of-precision": [
"error"
],
"@typescript-eslint/no-misused-new": [
"error"
],
"@typescript-eslint/no-namespace": [
"error"
],
"@typescript-eslint/no-non-null-asserted-optional-chain": [
"error"
],
"@typescript-eslint/no-this-alias": [
"error"
],
"@typescript-eslint/no-unnecessary-type-constraint": [
"error"
],
"@typescript-eslint/no-unsafe-declaration-merging": [
"error"
],
"no-unused-vars": [
"off"
],
"@typescript-eslint/no-unused-vars": [
"error"
],
"@typescript-eslint/no-var-requires": [
"error"
],
"@typescript-eslint/prefer-as-const": [
"error"
],
"@typescript-eslint/triple-slash-reference": [
"error"
],
"constructor-super": [
"off"
],
"getter-return": [
"off"
],
"no-const-assign": [
"off"
],
"no-dupe-args": [
"off"
],
"no-dupe-class-members": [
"off"
],
"no-dupe-keys": [
"off"
],
"no-func-assign": [
"off"
],
"no-import-assign": [
"off"
],
"no-new-symbol": [
"off"
],
"no-obj-calls": [
"off"
],
"no-redeclare": [
"off"
],
"no-setter-return": [
"off"
],
"no-this-before-super": [
"off"
],
"no-undef": [
"off"
],
"no-unreachable": [
"off"
],
"no-unsafe-negation": [
"off"
],
"no-var": [
"error"
],
"prefer-const": [
"error"
],
"prefer-rest-params": [
"error"
],
"prefer-spread": [
"error"
],
"for-direction": [
"error"
],
"no-async-promise-executor": [
"error"
],
"no-case-declarations": [
"error"
],
"no-class-assign": [
"error"
],
"no-compare-neg-zero": [
"error"
],
"no-cond-assign": [
"error"
],
"no-constant-condition": [
"error"
],
"no-control-regex": [
"error"
],
"no-debugger": [
"error"
],
"no-delete-var": [
"error"
],
"no-dupe-else-if": [
"error"
],
"no-duplicate-case": [
"error"
],
"no-empty": [
"error"
],
"no-empty-character-class": [
"error"
],
"no-empty-pattern": [
"error"
],
"no-ex-assign": [
"error"
],
"no-extra-boolean-cast": [
"error"
],
"no-fallthrough": [
"error"
],
"no-global-assign": [
"error"
],
"no-inner-declarations": [
"error"
],
"no-invalid-regexp": [
"error"
],
"no-irregular-whitespace": [
"error"
],
"no-misleading-character-class": [
"error"
],
"no-nonoctal-decimal-escape": [
"error"
],
"no-octal": [
"error"
],
"no-prototype-builtins": [
"error"
],
"no-regex-spaces": [
"error"
],
"no-self-assign": [
"error"
],
"no-shadow-restricted-names": [
"error"
],
"no-sparse-arrays": [
"error"
],
"no-unsafe-finally": [
"error"
],
"no-unsafe-optional-chaining": [
"error"
],
"no-unused-labels": [
"error"
],
"no-useless-backreference": [
"error"
],
"no-useless-catch": [
"error"
],
"no-useless-escape": [
"error"
],
"no-with": [
"error"
],
"require-yield": [
"error"
],
"use-isnan": [
"error"
],
"valid-typeof": [
"error"
],
"@nx/enforce-module-boundaries": [
"error",
{
"enforceBuildableLibDependency": true,
"allow": [],
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": [
"*"
]
}
]
}
]
},
"settings": {},
"ignorePatterns": [
"/apps/lint-macguffin/**/**/*",
"!/apps/lint-macguffin/**/**/*",
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment