Skip to content

Instantly share code, notes, and snippets.

@tcrowe
Last active November 13, 2018 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tcrowe/606d45405ceaa2ad8484aeb6ae1126cc to your computer and use it in GitHub Desktop.
Save tcrowe/606d45405ceaa2ad8484aeb6ae1126cc to your computer and use it in GitHub Desktop.
.stylintrc with stylus-supremacy
{
"blocks": "never",
"brackets": "never",
"colons": "never",
"commaSpace": "always",
"commentSpace": "always",
"cssLiteral": "never",
"depthLimit": 6,
"duplicates": false,
"efficient": "always",
"exclude": ["node_modules", "dist", "tmp", ".tmp", "source/build", "public"],
"globalDupe": true,
"groupOutputByFile": true,
"indentPref": 2,
"extendPref": "@extends",
"leadingZero": "always",
"maxErrors": 9,
"maxWarnings": 9,
"mixed": false,
"namingConvention": "lowercase-dash",
"namingConventionStrict": true,
"none": "always",
"noImportant": true,
"parenSpace": "never",
"placeholder": "always",
"prefixVarsWithDollar": "always",
"quotePref": "double",
"reporterOptions": {},
"semicolons": "never",
"sortOrder": "alphabetical",
"stackedProperties": "never",
"trailingWhitespace": "never",
"universal": false,
"valid": true,
"zeroUnits": "never",
"zIndexNormalize": false,
"stylusSupremacy.insertColons": false,
"stylusSupremacy.insertSemicolons": false,
"stylusSupremacy.insertBraces": false,
"stylusSupremacy.insertNewLineAroundImports": true,
"stylusSupremacy.insertNewLineAroundBlocks": true,
"stylusSupremacy.insertNewLineAroundProperties": false,
"stylusSupremacy.insertNewLineAroundOthers": false,
"stylusSupremacy.preserveNewLinesBetweenPropertyValues": false,
"stylusSupremacy.insertSpaceBeforeComment": true,
"stylusSupremacy.insertSpaceAfterComment": true,
"stylusSupremacy.insertSpaceAfterComma": true,
"stylusSupremacy.insertSpaceInsideParenthesis": false,
"stylusSupremacy.insertParenthesisAfterNegation": false,
"stylusSupremacy.insertParenthesisAroundIfCondition": false,
"stylusSupremacy.insertNewLineBeforeElse": false,
"stylusSupremacy.insertLeadingZeroBeforeFraction": true,
"stylusSupremacy.selectorSeparator": "\n",
"stylusSupremacy.tabStopChar": " ",
"stylusSupremacy.newLineChar": "\n",
"stylusSupremacy.quoteChar": "\"",
"stylusSupremacy.sortProperties": true,
"stylusSupremacy.alwaysUseNot": true,
"stylusSupremacy.alwaysUseAtBlock": false,
"stylusSupremacy.alwaysUseExtends": true,
"stylusSupremacy.alwaysUseNoneOverZero": true,
"stylusSupremacy.alwaysUseZeroWithoutUnit": true,
"stylusSupremacy.reduceMarginAndPaddingValues": true,
"stylusSupremacy.ignoreFiles": ["node_modules", "dist", "tmp", ".tmp", "source/build", "pubilc"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment