From 0a36731c26524a664003b4b258e7b78da6ca8170 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Thu, 16 Apr 2020 18:22:44 +0000 Subject: [PATCH] Delete .eslintrc --- .../lightdm-webkit-theme-aether/.eslintrc | 59 ------------------- 1 file changed, 59 deletions(-) delete mode 100644 arch-config/usr/share/lightdm-webkit/themes/lightdm-webkit-theme-aether/.eslintrc diff --git a/arch-config/usr/share/lightdm-webkit/themes/lightdm-webkit-theme-aether/.eslintrc b/arch-config/usr/share/lightdm-webkit/themes/lightdm-webkit-theme-aether/.eslintrc deleted file mode 100644 index 790ebd99..00000000 --- a/arch-config/usr/share/lightdm-webkit/themes/lightdm-webkit-theme-aether/.eslintrc +++ /dev/null @@ -1,59 +0,0 @@ -{ - "env": { - "browser": true, - "es6": true - }, - "globals": { - "require": true - }, - "extends": [ - "eslint:recommended", - "plugin:react/recommended", - "plugin:jsx-control-statements/recommended" - ], - "parserOptions": { - "ecmaFeatures": { - "experimentalObjectRestSpread": true, - "jsx": true - }, - "sourceType": "module" - }, - "plugins": [ - "react", - "jsx-control-statements" - ], - "rules": { - "react/jsx-no-undef": [2, { "allowGlobals": true }], - "indent": [ - "error", - 2, - { - "SwitchCase": 1 - } - ], - "linebreak-style": [ - "error", - "unix" - ], - "no-unused-vars" : [ - "warn", - { - "argsIgnorePattern": "_*" - } - ], - "no-warning-comments" : [ - "warn", - { - "terms": [ - "todo", - "fixme", - "hack" - ] - } - ], - "semi": [ - "error", - "always" - ] - } -}