hardhat-artifactor
Version:
Dynamically generate deployable Hardhat artifacts
62 lines (61 loc) • 923 B
JavaScript
module.exports = {
'env': {
'node': true,
'es6': true,
},
'extends': [
'eslint:recommended',
],
'globals': {
'task': 'readonly',
},
'parserOptions': {
'ecmaVersion': 2018,
'sourceType': 'module',
},
'rules': {
'no-console': [
'off',
],
'indent': [
'error',
2,
],
'linebreak-style': [
'error',
'unix',
],
'no-trailing-spaces': [
'error',
],
'quotes': [
'error',
'single',
],
'semi': [
'error',
'always',
],
'no-var': [
'error',
],
'comma-dangle': [
'error',
{
'objects': 'always-multiline',
'arrays': 'always-multiline',
},
],
'object-curly-spacing': [
'error',
'always',
],
'key-spacing': [
'error',
{
'afterColon': true,
'mode': 'minimum',
},
],
},
};