Last active
July 12, 2021 13:39
-
-
Save kvedantmahajan/d675b0ee68aaaf38ee6c56cd04d5638f to your computer and use it in GitHub Desktop.
Revisions
-
kvedantmahajan revised this gist
Nov 18, 2019 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,7 +19,8 @@ "env": { "browser": true, "jasmine": true, "jest": true, "node": true }, "rules": { "prettier/prettier": [ -
kvedantmahajan revised this gist
Nov 18, 2019 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,10 +2,7 @@ "parser": "@typescript-eslint/parser", "parserOptions": { "sourceType": "module", "project": "./tsconfig.json" }, "plugins": [ "react", -
kvedantmahajan revised this gist
Nov 18, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,8 @@ "parserOptions": { "sourceType": "module", "project": [ "./packages/ui-components/tsconfig.json", "./packages/ui-core/tsconfig.json" ] }, "plugins": [ -
kvedantmahajan created this gist
Nov 18, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,57 @@ { "parser": "@typescript-eslint/parser", "parserOptions": { "sourceType": "module", "project": [ "./packages/components/tsconfig.json", "./packages/core/tsconfig.json" ] }, "plugins": [ "react", "prettier", "@typescript-eslint" ], "extends": [ "eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/eslint-recommended", "prettier", "prettier/@typescript-eslint" ], "env": { "browser": true, "jasmine": true, "jest": true }, "rules": { "prettier/prettier": [ "error", { "jsx-max-props-per-line": 1, "useTabs": true, "tabWidth": 4 } ], "no-case-declarations": "off", "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ "error", { "vars": "all", "args": "all", "ignoreRestSiblings": false } ], "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/unbound-method": "off", "react/display-name": "off" }, "settings": { "react": { "pragma": "React", "version": "detect" } } }