|
| 1 | +import EslintTester from 'eslint-tester'; |
| 2 | +import eslint from 'eslint'; |
| 3 | + |
| 4 | +let tester = new EslintTester(eslint.linter); |
| 5 | + |
| 6 | +tester.addRuleTest('src/rules/import', { |
| 7 | + valid: [ |
| 8 | + { |
| 9 | + code: 'import "something"', |
| 10 | + parser: 'babel-eslint' |
| 11 | + }, |
| 12 | + { |
| 13 | + code: 'import something from "something"', |
| 14 | + parser: 'babel-eslint' |
| 15 | + }, |
| 16 | + { |
| 17 | + code: 'import lodash from "something"', |
| 18 | + parser: 'babel-eslint' |
| 19 | + }, |
| 20 | + { |
| 21 | + code: 'import { something } from "something"', |
| 22 | + parser: 'babel-eslint' |
| 23 | + }, |
| 24 | + { |
| 25 | + code: 'import { default as other } from "something"', |
| 26 | + parser: 'babel-eslint' |
| 27 | + }, |
| 28 | + { |
| 29 | + code: 'import find from "lodash/collection/find"', |
| 30 | + parser: 'babel-eslint' |
| 31 | + } |
| 32 | + ], |
| 33 | + invalid: [ |
| 34 | + { |
| 35 | + code: 'import "lodash"', |
| 36 | + parser: 'babel-eslint', |
| 37 | + errors: [{ |
| 38 | + message: 'Importing the entire lodash library is not permitted, please import the specific functions you need' |
| 39 | + }] |
| 40 | + }, |
| 41 | + { |
| 42 | + code: 'import _ from "lodash"', |
| 43 | + parser: 'babel-eslint', |
| 44 | + errors: [{ |
| 45 | + message: 'Importing the entire lodash library is not permitted, please import the specific functions you need' |
| 46 | + }] |
| 47 | + }, |
| 48 | + { |
| 49 | + code: 'import lodash from "lodash"', |
| 50 | + parser: 'babel-eslint', |
| 51 | + errors: [{ |
| 52 | + message: 'Importing the entire lodash library is not permitted, please import the specific functions you need' |
| 53 | + }] |
| 54 | + }, |
| 55 | + { |
| 56 | + code: 'import { something } from "lodash"', |
| 57 | + parser: 'babel-eslint', |
| 58 | + errors: [{ |
| 59 | + message: 'Importing the entire lodash library is not permitted, please import the specific functions you need' |
| 60 | + }] |
| 61 | + }, |
| 62 | + { |
| 63 | + code: 'import { default as other } from "lodash"', |
| 64 | + parser: 'babel-eslint', |
| 65 | + errors: [{ |
| 66 | + message: 'Importing the entire lodash library is not permitted, please import the specific functions you need' |
| 67 | + }] |
| 68 | + } |
| 69 | + ] |
| 70 | +}); |
0 commit comments