Created
June 29, 2021 03:49
-
-
Save andrewriveradev/df39fc35dbd79fccd5057e8491a9d5cd to your computer and use it in GitHub Desktop.
Revisions
-
⌨️ Luca Cattide revised this gist
May 25, 2021 . 1 changed file with 1 addition 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 @@ -8,8 +8,7 @@ "plugin:react/recommended", "airbnb", "airbnb/hooks", "prettier" ], "parser": "babel-eslint", "parserOptions": { -
⌨️ Luca Cattide revised this gist
Jan 25, 2021 . No changes.There are no files selected for viewing
-
⌨️ Luca Cattide revised this gist
Jan 25, 2021 . 2 changed files with 6 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 @@ -0,0 +1,4 @@ { "plugins": ["cypress", "chai-friendly"], "extends": ["plugin:cypress/recommended", "plugin:chai-friendly/recommended"] } 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 @@ -1,8 +1,8 @@ npm i -D babel-eslint eslint eslint-config-prettier eslint-plugin-chai-friendly eslint-plugin-cypress eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npx install-peerdeps -D eslint-config-airbnb npm i -D --save-exact prettier # or yarn add babel-eslint eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-chai-friendly eslint-plugin-cypress eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks stylelint stylelint-config-prettier stylelint-config-recommended -D yarn add prettier -D --exact -
⌨️ Luca Cattide revised this gist
Dec 21, 2020 . 1 changed file with 7 additions and 0 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 @@ -39,5 +39,12 @@ "tsx": "never" } ] }, "settings": { "import/resolver": { "node": { "extensions": [".js", ".jsx", ".ts", ".tsx"] } } } } -
⌨️ Luca Cattide revised this gist
Dec 21, 2020 . 1 changed file with 11 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 @@ -28,6 +28,16 @@ } ], "prettier/prettier": "error", "no-param-reassign": 0, "import/extensions": [ "error", "ignorePackages", { "js": "never", "jsx": "never", "ts": "never", "tsx": "never" } ] } } -
⌨️ Luca Cattide revised this gist
Dec 17, 2020 . 1 changed file with 1 addition 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 @@ -2,8 +2,7 @@ "env": { "browser": true, "es2021": true, "jest": true }, "extends": [ "plugin:react/recommended", -
⌨️ Luca Cattide revised this gist
Dec 17, 2020 . 1 changed file with 1 addition 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 @@ -25,7 +25,7 @@ "react/jsx-filename-extension": [ "error", { "extensions": [".js", ".jsx", ".ts", ".tsx"] } ], "prettier/prettier": "error", -
⌨️ Luca Cattide revised this gist
Dec 17, 2020 . 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 @@ -2,7 +2,8 @@ "env": { "browser": true, "es2021": true, "jest": true, "node": true }, "extends": [ "plugin:react/recommended", -
⌨️ Luca Cattide revised this gist
Dec 16, 2020 . 1 changed file with 0 additions and 17 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 @@ -21,16 +21,6 @@ }, "plugins": ["react", "prettier"], "rules": { "react/jsx-filename-extension": [ "error", { @@ -39,12 +29,5 @@ ], "prettier/prettier": "error", "no-param-reassign": 0 } } -
⌨️ Luca Cattide revised this gist
Dec 16, 2020 . 1 changed file with 17 additions and 0 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 @@ -21,6 +21,16 @@ }, "plugins": ["react", "prettier"], "rules": { "import/extensions": [ "error", "ignorePackages", { "js": "never", "jsx": "never", "ts": "never", "tsx": "never" } ], "react/jsx-filename-extension": [ "error", { @@ -29,5 +39,12 @@ ], "prettier/prettier": "error", "no-param-reassign": 0 }, "settings": { "import/resolver": { "node": { "extensions": [".js", ".jsx", ".ts", ".tsx"] } } } } -
⌨️ Luca Cattide revised this gist
Dec 16, 2020 . 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 @@ -1,8 +1,8 @@ npm i -D babel-eslint eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npx install-peerdeps -D eslint-config-airbnb npm i -D --save-exact prettier # or yarn add babel-eslint eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks stylelint stylelint-config-prettier stylelint-config-recommended -D yarn add prettier -D --exact -
⌨️ Luca Cattide revised this gist
Dec 16, 2020 . 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 @@ -1,8 +1,8 @@ npm i -D babel-eslint eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npx install-peerdeps -D eslint-config-airbnb npm i -D --save-exact prettier # or yarn add eslint babel-eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks stylelint stylelint-config-prettier stylelint-config-recommended -D yarn add prettier -D --exact -
⌨️ Luca Cattide revised this gist
Dec 16, 2020 . 1 changed file with 3 additions and 3 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 @@ -1,6 +1,6 @@ npm i -D babel-eslint eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npx install-peerdeps -D eslint-config-airbnb npm i -D --save-exact prettier # or -
⌨️ Luca Cattide revised this gist
Dec 16, 2020 . 1 changed file with 4 additions 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 @@ -1,8 +1,8 @@ npm i --save-dev babel-eslint eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npx install-peerdeps --dev eslint-config-airbnb npm i --save-dev --save-exact prettier # or yarn add eslint babel-eslint eslint-config-prettier eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks stylelint stylelint-config-prettier stylelint-config-recommended -D yarn add prettier -D --exact -
⌨️ Luca Cattide revised this gist
Dec 5, 2020 . 1 changed file with 29 additions and 35 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 @@ -1,39 +1,33 @@ { "env": { "browser": true, "es2021": true, "jest": true }, "extends": [ "plugin:react/recommended", "airbnb", "airbnb/hooks", "prettier", "prettier/react" ], "parser": "babel-eslint", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 12, "sourceType": "module" }, "plugins": ["react", "prettier"], "rules": { "react/jsx-filename-extension": [ "error", { "extensions": [".js", ".jsx", "ts", "tsx"] } ], "prettier/prettier": "error", "no-param-reassign": 0 } } -
⌨️ Luca Cattide revised this gist
Dec 4, 2020 . 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 @@ -1,8 +1,8 @@ npm install --save-dev babel-eslint eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npx install-peerdeps --dev eslint-config-airbnb npm install --save-dev --save-exact prettier # or yarn add eslint babel-eslint eslint-config-prettier eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks stylelint stylelint-config-prettier stylelint-config-recommended --dev yarn add prettier --dev --exact -
⌨️ Luca Cattide revised this gist
Dec 4, 2020 . 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 @@ -1,7 +1,8 @@ { "env": { "browser": true, "es2021": true, "jest": true }, "extends": [ "plugin:react/recommended", -
⌨️ Luca Cattide revised this gist
Dec 4, 2020 . 3 changed files with 26 additions and 21 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,6 +3,7 @@ "stylelint-config-recommended", "stylelint-config-prettier" ], // Only for Tailwind support "rules": { "at-rule-no-unknown": [ true, 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 @@ -1,18 +1,21 @@ { "editor.formatOnSave": true, "[javascript]": { "editor.formatOnSave": false }, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "eslint.alwaysShowStatus": true, "eslint.validate": [ "javascript" ], "prettier.stylelintIntegration": true, "prettier.disableLanguages": [ "js" ], // Only for Tailwind support "css.validate": false, "less.validate": false, "scss.validate": false } 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 @@ -1,7 +1,8 @@ npm install --save-dev eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npx install-peerdeps --dev eslint-config-airbnb npm install --save-dev --save-exact prettier # or yarn add eslint eslint-config-prettier eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks stylelint stylelint-config-prettier stylelint-config-recommended --dev yarn add prettier --dev --exact -
⌨️ Luca Cattide revised this gist
Dec 4, 2020 . 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 @@ -1,7 +1,7 @@ npm install --save-dev eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier stylelint stylelint-config-prettier stylelint-config-recommended npm install --save-dev --save-exact prettier # or yarn add --dev eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks stylelint stylelint-config-prettier stylelint-config-recommended yarn add --dev --exact prettier -
⌨️ Luca Cattide revised this gist
Dec 4, 2020 . 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,11 +3,11 @@ "stylelint-config-recommended", "stylelint-config-prettier" ], "rules": { "at-rule-no-unknown": [ true, { "ignoreAtRules": [ "tailwind", "apply", "variants", -
⌨️ Luca Cattide revised this gist
Dec 4, 2020 . 3 changed files with 30 additions and 3 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 @@ -1,5 +1,22 @@ { "extends": [ "stylelint-config-recommended", "stylelint-config-prettier" ], rules: { "at-rule-no-unknown": [ true, { ignoreAtRules: [ "tailwind", "apply", "variants", "responsive", "screen" ], }, ], "declaration-block-trailing-semicolon": null, "no-descending-specificity": null } } 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 @@ -12,4 +12,7 @@ "prettier.stylelintIntegration": true, "prettier.disableLanguages": [ "js" ], "css.validate": false, "less.validate": false, "scss.validate": false 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,7 @@ npm install --save-dev eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hhoks prettier stylelint stylelint-config-prettier stylelint-config-recommended npm install --save-dev --save-exact prettier # or yarn add --dev eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hhoks stylelint stylelint-config-prettier stylelint-config-recommended yarn add --dev --exact prettier -
⌨️ Luca Cattide revised this gist
Nov 25, 2020 . 1 changed file with 5 additions and 0 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 @@ -0,0 +1,5 @@ { "extends": [ "@wemake-services/stylelint-config-scss" ] } -
⌨️ Luca Cattide revised this gist
Nov 25, 2020 . 1 changed file with 1 addition and 0 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 @@ -9,6 +9,7 @@ "eslint.validate": [ "javascript" ], "prettier.stylelintIntegration": true, "prettier.disableLanguages": [ "js" ] -
⌨️ Luca Cattide revised this gist
Nov 25, 2020 . 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 @@ -32,6 +32,7 @@ ] } ], "prettier/prettier": "error", "no-param-reassign": 0 } } -
⌨️ Luca Cattide revised this gist
Nov 25, 2020 . 1 changed file with 3 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 @@ -6,7 +6,9 @@ "source.fixAll.eslint": true }, "eslint.alwaysShowStatus": true, "eslint.validate": [ "javascript" ], "prettier.disableLanguages": [ "js" ] -
⌨️ Luca Cattide revised this gist
Nov 25, 2020 . 1 changed file with 1 addition and 0 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 @@ -6,6 +6,7 @@ "source.fixAll.eslint": true }, "eslint.alwaysShowStatus": true, "eslint.validate": ["javascript"], "prettier.disableLanguages": [ "js" ] -
⌨️ Luca Cattide created this gist
Nov 25, 2020 .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,37 @@ { "env": { "browser": true, "es2021": true }, "extends": [ "plugin:react/recommended", "airbnb", "airbnb/hooks", "prettier", "prettier/react" ], "parser": "babel-eslint", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 12, "sourceType": "module" }, "plugins": [ "react", "prettier" ], "rules": { "react/jsx-filename-extension": [ "error", { "extensions": [ ".js", ".jsx" ] } ], "prettier/prettier": "error" } } 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,4 @@ { "singleQuote": true, "trailingComma": "all" } 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,11 @@ "editor.formatOnSave": true, "[javascript]": { "editor.formatOnSave": false }, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "eslint.alwaysShowStatus": true, "prettier.disableLanguages": [ "js" ]