0dcd9906bf
* Add variable shorthand syntax support for local and global variables
- Add VariableShorthandType enum and VariableShorthandDefinitions for `.` (local) and `$` (global) prefixes
- Add VariableShorthandAutoCompleteOption class for autocomplete of variable shorthand syntax
- Implement variable expression parsing in MacroCstWalker to handle `{{.varName}}` and `{{$varName}}` syntax
- Add support for variable operations: get, set (=), increment (++), decrement (--), and add (+=)
- Route variable expressions to appropriate macro via handler
* Add variable shorthand autocomplete support for variable names and operators
- Add `isValidVariableShorthandName()` helper to validate variable names against shorthand pattern
- Add `VariableNameAutoCompleteOption` class for suggesting existing and new variable names
- Add `VariableOperatorAutoCompleteOption` class for suggesting operators (=, ++, --, +=)
- Add `VariableOperatorDefinitions` map with operator metadata (symbol, name, description, needsValue)
* Add variable shorthand support to {{if}} macro condition autocomplete
- Add variable shorthand (.var, $var) support to {{if}} condition evaluation in core-macros.js
- Detect and resolve variable shorthands using getvar/getglobalvar macros before condition check
- Update {{if}} description and examples to document variable shorthand syntax
- Add variable shorthand autocomplete options when typing {{if}} condition
- Show variable prefix options (. and $) when no condition is typed yet
- Reuse #buildVariableShorthandOptions
* refactor: Add Object.freeze to lexer constants and improve JSDoc documentation
- Freeze `modes` and `Tokens` objects to prevent accidental mutations
- Convert inline comments to proper JSDoc format for better documentation
- Add JSDoc block for `Def` lexer definition object
- Improve comment clarity and formatting consistency throughout MacroLexer.js
- Remove redundant section separator comments in variable shorthand modes
* Add inversion prefix (!) autocomplete support to {{if}} macro condition
- Add SimpleAutoCompleteOption class for basic autocomplete items with name, symbol, and description
- Add ! inversion prefix as autocomplete option in {{if}} condition with 🔁 icon
- Show ! as selectable option when nothing typed, non-selectable when already present
- Fix condition parsing to handle ! prefix with whitespace (e.g., "! $myvar")
- Update identifier extraction to strip ! and whitespace before detecting variable
* fix lint
* Fix variable shorthand regex in {{if}} macro to properly capture prefix and variable name
* Expand comprehensive e2e tests for variable shorthand syntax in lexer and macro engine
- Add MacroLexer tests for variable shorthand edge cases (whitespace, numbers, underscores, operators)
- Add MacroEngine tests for variable shorthand operations (hyphens, underscores, non-existent vars, chaining)
- Add MacroEngine tests for variable shorthand in {{if}} conditions (truthy/falsy, inversion, else branches)
- Test variable names with hyphens, underscores, and numbers in both get/set and conditional contexts
* Fix macro flags not being allowed inside variable shorthand macros
- Move MANY(flags) block from macroBody to macro rule to parse flags before branching
- Fix MacroCstWalker to extract flags from children.flags instead of bodyChildren.flags
- Ensures flags are available for both variable expressions and regular macros
- Fixes flag extraction in visitMacro and visitBlockMacroClose methods
* Add SillyTavern global to tests eslintrc
---------
Co-authored-by: Cohee <18619528+Cohee1207@users.noreply.github.com>
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
plugins: [
|
|
'jest',
|
|
'playwright',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:jest/recommended',
|
|
'plugin:playwright/recommended',
|
|
],
|
|
env: {
|
|
es6: true,
|
|
node: true,
|
|
'jest/globals': true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
overrides: [
|
|
],
|
|
ignorePatterns: [
|
|
'*.min.js',
|
|
'node_modules/**/*',
|
|
],
|
|
globals: {
|
|
SillyTavern: 'readonly',
|
|
},
|
|
rules: {
|
|
'no-unused-vars': ['error', { args: 'none' }],
|
|
'no-control-regex': 'off',
|
|
'no-constant-condition': ['error', { checkLoops: false }],
|
|
'require-yield': 'off',
|
|
'quotes': ['error', 'single'],
|
|
'semi': ['error', 'always'],
|
|
'indent': ['error', 4, { SwitchCase: 1, FunctionDeclaration: { parameters: 'first' } }],
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'eol-last': ['error', 'always'],
|
|
'no-trailing-spaces': 'error',
|
|
'object-curly-spacing': ['error', 'always'],
|
|
'space-infix-ops': 'error',
|
|
'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
|
|
'no-cond-assign': 'error',
|
|
|
|
// These rules should eventually be enabled.
|
|
'no-async-promise-executor': 'off',
|
|
'no-inner-declarations': 'off',
|
|
},
|
|
settings: {
|
|
jest: {
|
|
version: 29,
|
|
},
|
|
},
|
|
};
|