You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/client/web/plugins/.eslintrc.js

21 lines
392 B
JavaScript

const rootlint = require('../../../.eslintrc.js');
module.exports = {
...rootlint,
root: true,
rules: {
...rootlint.rules,
'no-restricted-imports': [
'error',
{
name: 'tailchat-shared',
message: 'Only allow use `@capital/*`',
},
{
name: 'translate',
message: 'Maybe you should use `./translate`',
},
],
},
};