diff --git a/lib/parse-variable.js b/lib/parse-variable.js index d221060..12ca4a3 100644 --- a/lib/parse-variable.js +++ b/lib/parse-variable.js @@ -3,6 +3,7 @@ const { parse: scssParse } = require('postcss-scss'); const Declaration = require('postcss/lib/declaration'); const Comment = require('postcss/lib/comment'); + let fusvEnabled = true; const parseNodes = (nodes, variables, ignoreList) => { diff --git a/package.json b/package.json index a9ab559..ab8db8c 100644 --- a/package.json +++ b/package.json @@ -56,8 +56,17 @@ "xo": { "space": 4, "rules": { + "arrow-body-style": "off", "capitalized-comments": "off", + "comma-dangle": [ + "error", + "never" + ], "import/extensions": "off", + "operator-linebreak": [ + "error", + "after" + ], "object-curly-spacing": [ "error", "always" @@ -67,6 +76,7 @@ "never" ], "unicorn/no-array-reduce": "off", + "unicorn/prefer-module": "off", "unicorn/prevent-abbreviations": "off" } }