From e30ad60a09d03df34b099e47390d736a1e2148a6 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Thu, 16 Apr 2020 18:02:22 +0000 Subject: [PATCH] Upload New File --- .../lightdm-webkit-theme-aether/.eslintrc | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create 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 new file mode 100644 index 00000000..790ebd99 --- /dev/null +++ b/arch-config/usr/share/lightdm-webkit/themes/lightdm-webkit-theme-aether/.eslintrc @@ -0,0 +1,59 @@ +{ + "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" + ] + } +}