From e7b75791ff905b44d2b507618a28bd97b2dc1b16 Mon Sep 17 00:00:00 2001 From: lb1c Date: Tue, 9 Jun 2020 21:31:31 +0200 Subject: [PATCH 1/4] Delete .jscsrc --- homedir/.jscsrc | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 homedir/.jscsrc diff --git a/homedir/.jscsrc b/homedir/.jscsrc deleted file mode 100644 index 6174f07..0000000 --- a/homedir/.jscsrc +++ /dev/null @@ -1,9 +0,0 @@ -{ - // Rules for JSCS - // See http://jscs.info/rules - "requireSpaceAfterKeywords": ["if", "for", "else", "switch", "catch", "try"], - "maximumLineLength": 100, - "requireSpaceAfterLineComment": { "allExcept": ["#", "="] }, - "requireCurlyBraces": ["if", "for", "else"], - "requireSpaceBeforeBlockStatements": 1 -} From 7cb48520c3eec292d8a8d424c2d19563824e602e Mon Sep 17 00:00:00 2001 From: lb1c Date: Tue, 9 Jun 2020 21:31:57 +0200 Subject: [PATCH 2/4] Delete .jshintrc --- homedir/.jshintrc | 91 ----------------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 homedir/.jshintrc diff --git a/homedir/.jshintrc b/homedir/.jshintrc deleted file mode 100644 index 5a82151..0000000 --- a/homedir/.jshintrc +++ /dev/null @@ -1,91 +0,0 @@ -{ - // JSHint Default Configuration File (as on JSHint website) - // See http://jshint.com/docs/ for more details - - "maxerr" : 50, // {int} Maximum error before stopping - - // Enforcing - "bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.) - "camelcase" : true, // true: Identifiers must be in camelCase - "curly" : true, // true: Require {} for every new block or scope - "eqeqeq" : true, // true: Require triple equals (===) for comparison - "forin" : true, // true: Require filtering for..in loops with obj.hasOwnProperty() - "freeze" : true, // true: prohibits overwriting prototypes of native objects such as Array, Date etc. - "immed" : false, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());` - "latedef" : false, // true: Require variables/functions to be defined before being used - "newcap" : false, // true: Require capitalization of all constructor functions e.g. `new F()` - "noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee` - "noempty" : true, // true: Prohibit use of empty blocks - "nonbsp" : true, // true: Prohibit "non-breaking whitespace" characters. - "nonew" : false, // true: Prohibit use of constructors for side-effects (without assignment) - "plusplus" : false, // true: Prohibit use of `++` and `--` - "quotmark" : true, // Quotation mark consistency: - // false : do nothing (default) - // true : ensure whatever is used is consistent - // "single" : require single quotes - // "double" : require double quotes - "undef" : true, // true: Require all non-global variables to be declared (prevents global leaks) - "unused" : true, // Unused variables: - // true : all variables, last function parameter - // "vars" : all variables only - // "strict" : all variables, all function parameters - "strict" : false, // true: Requires all functions run in ES5 Strict Mode - "maxparams" : false, // {int} Max number of formal params allowed per function - "maxdepth" : false, // {int} Max depth of nested blocks (within functions) - "maxstatements" : false, // {int} Max number statements per function - "maxcomplexity" : false, // {int} Max cyclomatic complexity per function - "maxlen" : false, // {int} Max number of characters per line - "varstmt" : false, // true: Disallow any var statements. Only `let` and `const` are allowed. - - // Relaxing - "asi" : false, // true: Tolerate Automatic Semicolon Insertion (no semicolons) - "boss" : false, // true: Tolerate assignments where comparisons would be expected - "debug" : false, // true: Allow debugger statements e.g. browser breakpoints. - "eqnull" : false, // true: Tolerate use of `== null` - "esversion" : 5, // {int} Specify the ECMAScript version to which the code must adhere. - "moz" : false, // true: Allow Mozilla specific syntax (extends and overrides esnext features) - // (ex: `for each`, multiple try/catch, function expression…) - "evil" : false, // true: Tolerate use of `eval` and `new Function()` - "expr" : false, // true: Tolerate `ExpressionStatement` as Programs - "funcscope" : false, // true: Tolerate defining variables inside control statements - "globalstrict" : false, // true: Allow global "use strict" (also enables 'strict') - "iterator" : false, // true: Tolerate using the `__iterator__` property - "lastsemic" : false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block - "laxbreak" : false, // true: Tolerate possibly unsafe line breakings - "laxcomma" : false, // true: Tolerate comma-first style coding - "loopfunc" : false, // true: Tolerate functions being defined in loops - "multistr" : false, // true: Tolerate multi-line strings - "noyield" : false, // true: Tolerate generator functions with no yield statement in them. - "notypeof" : false, // true: Tolerate invalid typeof operator values - "proto" : false, // true: Tolerate using the `__proto__` property - "scripturl" : false, // true: Tolerate script-targeted URLs - "shadow" : false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` - "sub" : false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation - "supernew" : false, // true: Tolerate `new function () { ... };` and `new Object;` - "validthis" : false, // true: Tolerate using this in a non-constructor function - - // Environments - "browser" : true, // Web Browser (window, document, etc) - "browserify" : false, // Browserify (node.js code in the browser) - "couch" : false, // CouchDB - "devel" : false, // Development/debugging (alert, confirm, etc) - "dojo" : false, // Dojo Toolkit - "jasmine" : false, // Jasmine - "jquery" : true, // jQuery - "mocha" : false, // Mocha - "mootools" : false, // MooTools - "node" : false, // Node.js - "nonstandard" : false, // Widely adopted globals (escape, unescape, etc) - "phantom" : false, // PhantomJS - "prototypejs" : false, // Prototype and Scriptaculous - "qunit" : false, // QUnit - "rhino" : false, // Rhino - "shelljs" : false, // ShellJS - "typed" : false, // Globals for typed array constructions - "worker" : false, // Web Workers - "wsh" : false, // Windows Scripting Host - "yui" : false, // Yahoo User Interface - - // Custom Globals - "globals" : {"ol": true} // additional predefined global variables -} From 6c751405fdb5d7d08c1b7c9bc1b120a115314a3f Mon Sep 17 00:00:00 2001 From: lb1c Date: Tue, 9 Jun 2020 21:32:06 +0200 Subject: [PATCH 3/4] Delete .stylelintrc --- homedir/.stylelintrc | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 homedir/.stylelintrc diff --git a/homedir/.stylelintrc b/homedir/.stylelintrc deleted file mode 100644 index a14436f..0000000 --- a/homedir/.stylelintrc +++ /dev/null @@ -1,38 +0,0 @@ -{ - "rules": { - "indentation": 4, - "max-empty-lines": 2, - "max-line-length": 100, - "string-quotes": "single", - "no-browser-hacks": true, - "block-no-empty": true, - - "color-no-invalid-hex": true, - - "rule-nested-empty-line-before": [ "always", { - "except": ["first-nested"], - "ignore": ["after-comment"] - } ], - "rule-non-nested-empty-line-before": "always", - - "property-no-unknown": true, - "property-case": "lower", - - "declaration-colon-space-after": "always", - "declaration-block-no-duplicate-properties": true, - "declaration-block-trailing-semicolon": "always", - "declaration-block-no-ignored-properties": true, - "declaration-block-no-shorthand-property-overrides": true, - "declaration-block-semicolon-newline-after": "always-multi-line", - - "no-eol-whitespace": true, - "no-extra-semicolons": true, - "no-invalid-double-slash-comments": true, - "no-missing-end-of-source-newline": true, - - "function-whitespace-after": "always", - "time-no-imperceptible": true, - "value-keyword-case": "lower", - "unit-no-unknown": true, - } -} From d6c31662b40cf8641abd5fcf817f9ff376e15ed2 Mon Sep 17 00:00:00 2001 From: lb1c Date: Tue, 9 Jun 2020 21:32:22 +0200 Subject: [PATCH 4/4] Delete pep8 --- homedir/.config/pep8 | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 homedir/.config/pep8 diff --git a/homedir/.config/pep8 b/homedir/.config/pep8 deleted file mode 100644 index 5c0df0d..0000000 --- a/homedir/.config/pep8 +++ /dev/null @@ -1,2 +0,0 @@ -[pep8] -max-line-length = 100