├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── release.yml │ └── run-ui-tests.yml ├── .gitignore ├── .idea └── gradle.xml ├── .run ├── Run Plugin.run.xml ├── Run Tests.run.xml └── Run Verifications.run.xml ├── CHANGELOG.md ├── README.md ├── assets └── example.gif ├── codecov.yml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── qodana.yaml ├── qodana.yml ├── settings.gradle.kts └── src ├── main ├── kotlin │ └── com │ │ └── github │ │ └── blackhole1 │ │ └── ideaspellcheck │ │ ├── Words.kt │ │ ├── dict │ │ └── RuntimeDictionaryProvider.kt │ │ ├── listener │ │ ├── CSpellConfigFileManager.kt │ │ └── CSpellFileListener.kt │ │ ├── services │ │ └── SCProjectService.kt │ │ ├── settings │ │ ├── SCProjectConfigurable.kt │ │ └── SCProjectSettings.kt │ │ ├── startup │ │ └── SCProjectActivity.kt │ │ └── utils │ │ ├── CSpellConfigDefinition.kt │ │ ├── FindConfigFile.kt │ │ ├── NodejsFinder.kt │ │ ├── NotificationManager.kt │ │ ├── ParseConfig.kt │ │ └── parse │ │ ├── DictionaryDefinition.kt │ │ ├── ParseJS.kt │ │ ├── ParseJSON.kt │ │ ├── ParseTOML.kt │ │ └── ParseYAML.kt └── resources │ ├── META-INF │ ├── plugin.xml │ └── pluginIcon.svg │ └── messages │ └── MyBundle.properties └── test └── kotlin └── com └── github └── blackhole1 └── ideaspellcheck └── utils ├── CSpellConfigDefinitionTest.kt └── parse ├── DictionaryDefinitionsParseTest.kt └── ParseTomlTest.kt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.github/workflows/run-ui-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.run/Run Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.run/Run Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.run/Run Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Verifications.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/.run/Run Verifications.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/assets/example.gif -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/codecov.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/gradlew.bat -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/qodana.yaml -------------------------------------------------------------------------------- /qodana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/qodana.yml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/Words.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/Words.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/dict/RuntimeDictionaryProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/dict/RuntimeDictionaryProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/listener/CSpellConfigFileManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/listener/CSpellConfigFileManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/listener/CSpellFileListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/listener/CSpellFileListener.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/services/SCProjectService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/services/SCProjectService.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/settings/SCProjectConfigurable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/settings/SCProjectConfigurable.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/settings/SCProjectSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/settings/SCProjectSettings.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/startup/SCProjectActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/startup/SCProjectActivity.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/CSpellConfigDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/CSpellConfigDefinition.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/FindConfigFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/FindConfigFile.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/NodejsFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/NodejsFinder.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/NotificationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/NotificationManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/ParseConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/ParseConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/DictionaryDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/DictionaryDefinition.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseJS.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseJS.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseJSON.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseJSON.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseTOML.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseTOML.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseYAML.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseYAML.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/messages/MyBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/main/resources/messages/MyBundle.properties -------------------------------------------------------------------------------- /src/test/kotlin/com/github/blackhole1/ideaspellcheck/utils/CSpellConfigDefinitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/test/kotlin/com/github/blackhole1/ideaspellcheck/utils/CSpellConfigDefinitionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/DictionaryDefinitionsParseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/test/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/DictionaryDefinitionsParseTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseTomlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/idea-spell-check/HEAD/src/test/kotlin/com/github/blackhole1/ideaspellcheck/utils/parse/ParseTomlTest.kt --------------------------------------------------------------------------------