@stordata/grammars
Version:
A collection of ANTLR grammars used at Stordata. This project exists so that we can package the grammars (and various utilities) as a CommonJS module. The `antlr4` Javascript runtime is only available as an ES module at the time of writing.
18 lines (16 loc) • 355 B
JavaScript
import { defineConfig } from '@eslint/config-helpers';
import stordata from '@stordata/eslint-config';
import importPlugin from 'eslint-plugin-import';
export default defineConfig([
stordata,
{
plugins: {
import: importPlugin
},
rules: {
'import/order': ['error', {
'newlines-between': 'always'
}]
}
}
]);