To receive notifications about scheduled maintenance, please subscribe to the mailing-list gitlab-operations@sympa.ethz.ch. You can subscribe to the mailing-list at https://sympa.ethz.ch
module.exports = { extends: [ 'airbnb-base', "plugin:prettier/recommended" ], env: { browser: true, node: true, }, rules: { 'no-multi-str': 0, 'no-underscore-dangle': 0, 'no-console': 0, 'import/prefer-default-export': 0, 'prettier/prettier': 'error', }, plugins: ['prettier'], };