Skip to content

Instantly share code, notes, and snippets.

View ohepworthbell's full-sized avatar

Oliver Hepworth-Bell ohepworthbell

View GitHub Profile
module.exports = {
extends: 'stylelint-config-standard',
rules: {
indentation: [2],
'selector-type-no-unknown': null,
'at-rule-no-unknown': null,
'unit-whitelist': ['em', 'rem', '%', 'px', 'vw', 'vh', 's', 'deg', 'fr'],
'no-descending-specificity': null
}
};
module.exports = {
env: {
browser: true,
es6: true,
jest: true
},
ignorePatterns: ['**/*.test.js'],
extends: ['eslint:recommended'],
parserOptions: {
ecmaVersion: 2018,