ptkdev / eslint-plugin-snakecasejs

:pencil2: ESLint Plugin: enforce snake_case syntax on variables and function names
https://npmjs.com/package/eslint-plugin-snakecasejs
Other
32 stars 4 forks source link

Named imports are flagged as errors #7

Closed purefan closed 2 years ago

purefan commented 2 years ago

Versions

Named imports should not be flagged as errors since we do not have control over them: import { readFileSync } from 'fs' Should not throw an error

Actual Behavior

1:10 error Identifiers must be snake_case: readFileSync (ImportSpecifier) snakecasejs/snakecasejs