Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

330 changes: 0 additions & 330 deletions .eslintrc.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test/fixtures/**
package.json
package-lock.json
22 changes: 19 additions & 3 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
module.exports = {
// prettier.config.js, .prettierrc.js, prettier.config.cjs, or .prettierrc.cjs

/**
* @see https://prettier.io/docs/configuration
* @type {import("prettier").Config}
*/
const config = {
trailingComma: 'es5',
tabWidth: 4,
semi: true,
singleQuote: true,
bracketSpacing: true,
trailingComma: 'all',
overrides: [
{
files: '*.json',
options: {
useTabs: false,
},
},
],
};

module.exports = config;
4 changes: 2 additions & 2 deletions docs/autocomplete.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ USAGE
$ box autocomplete [SHELL] [-r]

ARGUMENTS
SHELL (zsh|bash|powershell) Shell type
[SHELL] (zsh|bash|powershell) Shell type

FLAGS
-r, --refresh-cache Refresh cache (ignores displaying instructions)
Expand All @@ -34,4 +34,4 @@ EXAMPLES
$ box autocomplete --refresh-cache
```

_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.18/src/commands/autocomplete/index.js)_
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.38/src/commands/autocomplete/index.js)_
Loading