@mixkit/mixkit
Version:
A lightweight, general-purpose Sass utility library.
20 lines (19 loc) • 330 B
JavaScript
module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true,
},
extends: [
"airbnb-base",
],
parserOptions: {
ecmaVersion: "latest",
},
rules: {
quotes: ["error", "double"],
"max-len": ["warn", 100],
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
},
};