Skip to content

Commit

Permalink
Removing #spell-check-ignore-line comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Feb 19, 2025
1 parent c21ad88 commit 5196f2d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Lombiq.VueJs.Samples/Views/VueSfc/EnhancedList.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

@* Another approach is to introduce a top level SFC that overwrites the whole form with its <template>. This may be more
effort but it greatly simplifies the glue logic. If you do this often, consider using a server side rendering
framework such as Nuxt.js. #spell-check-ignore-line
framework such as Nuxt.js.
<script type="module" defer>
import { createApp } from 'vue';
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.VueJs/Assets/Scripts/helpers/process-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function executeFunctionByCommandLineArgument(functions) {

if (!target) helpAndExit(`Couldn't find the function "${functionName}".`);

// #spell-check-ignore-line: Execute the function with the provided options object, if any. If it's a thenable
// Execute the function with the provided options object, if any. If it's a thenable
// object (e.g. Promise), then it's also awaited.
const task = target[1](argumentOptions);
if (task && task.then) await task;
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.VueJs/Assets/Scripts/helpers/rollup-pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = function rollupPipeline(
outputOptions = null) {
function configure(fileName, entryPath) {
const defaultRollupOptions = {
onwarn: (warning, next) => { // #spell-check-ignore-line
onwarn: (warning, next) => {
if (warning.code === 'THIS_IS_UNDEFINED') return;
next(warning);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = function vuePlugin() {
const source = await readFile(filePath, 'utf8');
let code = onlyScript(source).trim();

// Reappend leading space. #spell-check-ignore-line
// Reappend leading space.
const leadingSpace = lastItem(source.substring(0, source.indexOf(code) + 1).split('\n'));
if (leadingSpace && leadingSpace.match(/^\s+$/)) code = leadingSpace + code;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function compile(options) {
if (!fs.existsSync(opts.vueJsNodeModulesPath)) {
throw new Error(`The vueJsNodeModulesPath option's path "${opts.vueJsNodeModulesPath}" does not exist!`);
}
if (!fs.lstatSync(opts.vueJsNodeModulesPath).isDirectory()) { // #spell-check-ignore-line
if (!fs.lstatSync(opts.vueJsNodeModulesPath).isDirectory()) {
throw new Error(`The vueJsNodeModulesPath option's path "${opts.vueJsNodeModulesPath}" is not a directory!`);
}

Expand Down

0 comments on commit 5196f2d

Please sign in to comment.