wettr
Version:
🌦 Easy way to check Weather via the command line.
28 lines (27 loc) • 816 B
JavaScript
module.exports = {
env: {
commonjs: true,
es2021: true,
node: true,
},
extends: ["prettier", "airbnb-base", "plugin:unicorn/recommended"],
parserOptions: {
ecmaVersion: "latest",
},
plugins: ["unicorn", "prettier"],
rules: {
"unicorn/prefer-top-level-await": "off",
"unicorn/prefer-module": "off",
"unicorn/filename-case": "off",
"unicorn/explicit-length-check": "off",
"unicorn/prevent-abbreviations": "off",
"consistent-return": "off",
"unicorn/better-regex": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/numeric-separators-style": "off",
"no-param-reassign": "off",
"max-len": "off",
quotes: [2, "double"],
indent: ["error", 4],
},
};