summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/.eslintrc.js
blob: 9d86da20e14ed3f306bb8a75324faa3571fe3b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  rules: {
    'no-restricted-imports': [
      'error',
      {
        /** The mocha tests run on the compiled output in the /lib directory
         * so we should avoid importing from src.
         */
        patterns: ['*src*'],
      },
    ],
  },
};