github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/webui/.eslintrc (about) 1 { 2 "parser": "@typescript-eslint/parser", 3 "plugins": [ 4 "@typescript-eslint", 5 "compat" 6 ], 7 "env": { 8 "browser": true, 9 "jest": true, 10 "es6": true 11 }, 12 "settings": { 13 "react": { 14 "version": "17.0" 15 } 16 }, 17 "rules": { 18 "eqeqeq": "warn", 19 "strict": "error", 20 "react/prop-types": 0, 21 "react/jsx-key": 0, 22 "react/display-name": 0 23 }, 24 "extends": [ 25 "eslint:recommended", 26 "plugin:@typescript-eslint/eslint-recommended", 27 "plugin:@typescript-eslint/recommended", 28 "plugin:react/recommended", 29 "plugin:compat/recommended" 30 ], 31 "globals": { 32 "process": true 33 } 34 }