mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 10:54:45 +00:00
test: specify types for path checks in interpreter tests test: add optional chaining in lexer tests to prevent errors test: add optional chaining in parser tests to prevent errors fix: clean up whitespace and formatting in AST and lexer files feat: enhance CLI with improved error handling and user prompts fix: update index and interpreter files for better type handling fix: clean up parser code for better readability and error handling build: enable minification in tsdown configuration
16 lines
271 B
JavaScript
16 lines
271 B
JavaScript
import antfu from '@antfu/eslint-config';
|
|
|
|
export default antfu(
|
|
{
|
|
stylistic: {
|
|
indent: 2,
|
|
semi: true,
|
|
quotes: 'single',
|
|
overrides: {
|
|
'style/comma-dangle': ['error', 'always-multiline'],
|
|
},
|
|
},
|
|
typescript: true,
|
|
},
|
|
);
|