UNPKG

@teqfw/core

Version:

Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.

47 lines (46 loc) 973 B
module.exports = { 'env': { 'browser': true, 'es2021': true, 'node': true }, 'extends': [ 'eslint:recommended' ], 'parser': '@babel/eslint-parser', 'parserOptions': { 'ecmaVersion': 12, 'sourceType': 'module', 'babelOptions': { 'plugins': [ '@babel/plugin-proposal-class-properties', '@babel/plugin-proposal-private-methods' ], }, }, 'plugins': [ '@babel' ], 'rules': { 'camelcase': [ 'warn', {'properties': 'never', ignoreDestructuring: true, allow: ['^TeqFw_']} ], 'indent': [ 'error', 4 ], 'linebreak-style': [ 'error', 'unix' ], 'quotes': [ 'error', 'single' ], 'semi': [ 'error', 'always' ] } };