Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 4e658b3

Browse files
committed
package: run prettier-standard --lint and fix errors
Almost all of these changes were made automatically List of errors that had to be resolved manually: (`no-template-curly-in-string` errors were resolved by turning the rule off) .../snippets/lib/snippets.js 156:31 error Expected error to be handled handle-callback-err 164:9 error Unexpected literal in error position of callback standard/no-callback-literal 171:31 error Expected error to be handled handle-callback-err 286:7 error Expected error to be handled handle-callback-err 358:11 error Expected error to be handled handle-callback-err 372:14 error Unexpected literal in error position of callback standard/no-callback-literal .../snippets/spec/body-parser-spec.js 26:7 error Unexpected template string expression no-template-curly-in-string 54:39 error Unexpected template string expression no-template-curly-in-string 65:39 error Unexpected template string expression no-template-curly-in-string 79:7 error Unexpected template string expression no-template-curly-in-string 111:39 error Unexpected template string expression no-template-curly-in-string 129:39 error Unexpected template string expression no-template-curly-in-string 151:39 error Unexpected template string expression no-template-curly-in-string 171:39 error Unexpected template string expression no-template-curly-in-string 189:39 error Unexpected template string expression no-template-curly-in-string .../snippets/spec/snippets-spec.js 75:41 error Unexpected template string expression no-template-curly-in-string 199:19 error Unexpected template string expression no-template-curly-in-string 257:19 error Unexpected template string expression no-template-curly-in-string 271:19 error Unexpected template string expression no-template-curly-in-string 276:19 error Unexpected template string expression no-template-curly-in-string 280:19 error Unexpected template string expression no-template-curly-in-string 285:15 error Unexpected template string expression no-template-curly-in-string 289:19 error Unexpected template string expression no-template-curly-in-string 293:19 error Unexpected template string expression no-template-curly-in-string 297:19 error Unexpected template string expression no-template-curly-in-string 301:19 error Unexpected template string expression no-template-curly-in-string 1335:23 error Unexpected template string expression no-template-curly-in-string 1355:19 error Unexpected template string expression no-template-curly-in-string 1360:19 error Unexpected template string expression no-template-curly-in-string 1385:14 error Unexpected template string expression no-template-curly-in-string 1397:14 error Unexpected template string expression no-template-curly-in-string
1 parent e8024c8 commit 4e658b3

20 files changed

+2138
-1617
lines changed

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@
55
"globals": {
66
"waitsForPromise": true,
77
"atom": true
8+
},
9+
"rules": {
10+
"no-template-curly-in-string": "off"
811
}
912
}

ISSUE_TEMPLATE.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Do you want to ask a question? Are you looking for support? The Atom message boa
88

99
### Prerequisites
1010

11-
* [ ] Put an X between the brackets on this line if you have done all of the following:
12-
* Reproduced the problem in Safe Mode: http://flight-manual.atom.io/hacking-atom/sections/debugging/#using-safe-mode
13-
* Followed all applicable steps in the debugging guide: http://flight-manual.atom.io/hacking-atom/sections/debugging/
14-
* Checked the FAQs on the message board for common solutions: https://discuss.atom.io/c/faq
15-
* Checked that your issue isn't already filed: https://github.com/issues?utf8=✓&q=is%3Aissue+user%3Aatom
16-
* Checked that there is not already an Atom package that provides the described functionality: https://atom.io/packages
11+
- [ ] Put an X between the brackets on this line if you have done all of the following:
12+
- Reproduced the problem in Safe Mode: http://flight-manual.atom.io/hacking-atom/sections/debugging/#using-safe-mode
13+
- Followed all applicable steps in the debugging guide: http://flight-manual.atom.io/hacking-atom/sections/debugging/
14+
- Checked the FAQs on the message board for common solutions: https://discuss.atom.io/c/faq
15+
- Checked that your issue isn't already filed: https://github.com/issues?utf8=✓&q=is%3Aissue+user%3Aatom
16+
- Checked that there is not already an Atom package that provides the described functionality: https://atom.io/packages
1717

1818
### Description
1919

PULL_REQUEST_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### Requirements
22

3-
* Filling out the template is required. Any pull request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion.
4-
* All new code requires tests to ensure against regressions
3+
- Filling out the template is required. Any pull request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion.
4+
- All new code requires tests to ensure against regressions
55

66
### Description of the Change
77

README.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Snippets package
2+
23
[![macOS Build Status](https://travis-ci.org/atom/snippets.svg?branch=master)](https://travis-ci.org/atom/snippets) [![Windows Build Status](https://ci.appveyor.com/api/projects/status/8hlc0onofkgbxw53/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/snippets/branch/master) [![Dependency Status](https://david-dm.org/atom/snippets.svg)](https://david-dm.org/atom/snippets)
34

45
Expand snippets matching the current prefix with <kbd>tab</kbd> in Atom.
@@ -27,23 +28,25 @@ Under each snippet name is a `prefix` that should trigger the snippet and a `bod
2728
The above example adds a `log` snippet to JavaScript files that would expand to.
2829

2930
```js
30-
console.log("crash");
31+
console.log('crash')
3132
```
3233

3334
The string `"crash"` would be initially selected and pressing tab again would place the cursor after the `;`
3435

3536
### Optional parameters
37+
3638
These parameters are meant to provide extra information about your snippet to [autocomplete-plus](https://github.com/atom/autocomplete-plus/wiki/Provider-API).
3739

38-
* `leftLabel` will add text to the left part of the autocomplete results box.
39-
* `leftLabelHTML` will overwrite what's in `leftLabel` and allow you to use a bit of CSS such as `color`.
40-
* `rightLabelHTML`. By default, in the right part of the results box you will see the name of the snippet. When using `rightLabelHTML` the name of the snippet will no longer be displayed, and you will be able to use a bit of CSS.
41-
* `description` will add text to a description box under the autocomplete results list.
42-
* `descriptionMoreURL` URL to the documentation of the snippet.
40+
- `leftLabel` will add text to the left part of the autocomplete results box.
41+
- `leftLabelHTML` will overwrite what's in `leftLabel` and allow you to use a bit of CSS such as `color`.
42+
- `rightLabelHTML`. By default, in the right part of the results box you will see the name of the snippet. When using `rightLabelHTML` the name of the snippet will no longer be displayed, and you will be able to use a bit of CSS.
43+
- `description` will add text to a description box under the autocomplete results list.
44+
- `descriptionMoreURL` URL to the documentation of the snippet.
4345

4446
![autocomplete-description](http://i.imgur.com/cvI2lOq.png)
4547

4648
Example:
49+
4750
```coffee
4851
'.source.js':
4952
'console.log':
@@ -55,7 +58,7 @@ Example:
5558

5659
### Determining the correct scope for a snippet
5760

58-
The outmost key of a snippet is the "scope" that you want the descendent snippets to be available in. The key should be prefixed with a period (`text.html.basic` => `.text.html.basic`). You can find out the correct scope by opening the Settings (<kbd>cmd-,</kbd> on macOS) and selecting the corresponding *Language [xxx]* package, e.g. for *Language Html*:
61+
The outmost key of a snippet is the "scope" that you want the descendent snippets to be available in. The key should be prefixed with a period (`text.html.basic` => `.text.html.basic`). You can find out the correct scope by opening the Settings (<kbd>cmd-,</kbd> on macOS) and selecting the corresponding _Language [xxx]_ package, e.g. for _Language Html_:
5962

6063
![Screenshot of Language Html settings](https://cloud.githubusercontent.com/assets/1038121/5137632/126beb66-70f2-11e4-839b-bc7e84103f67.png)
6164

@@ -68,9 +71,9 @@ This package supports a subset of the features of TextMate snippets, [documented
6871

6972
The following features are not yet supported:
7073

71-
* Variables
72-
* Interpolated shell code
73-
* Conditional insertions in transformations
74+
- Variables
75+
- Interpolated shell code
76+
- Conditional insertions in transformations
7477

7578
### Multi-line Snippet Body
7679

appveyor.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
version: "{build}"
1+
version: '{build}'
22

33
platform: x64
44

55
branches:
6-
only:
7-
- master
6+
only:
7+
- master
88

99
clone_depth: 10
1010

@@ -14,8 +14,8 @@ environment:
1414
APM_TEST_PACKAGES:
1515

1616
matrix:
17-
- ATOM_CHANNEL: stable
18-
- ATOM_CHANNEL: beta
17+
- ATOM_CHANNEL: stable
18+
- ATOM_CHANNEL: beta
1919

2020
install:
2121
- ps: Install-Product node 4

lib/editor-store.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,32 @@ class EditorStore {
3131
this.existingHistoryProvider = this.buffer.historyProvider
3232
}
3333

34-
const newProvider = SnippetHistoryProvider(this.existingHistoryProvider, delegates)
34+
const newProvider = SnippetHistoryProvider(
35+
this.existingHistoryProvider,
36+
delegates
37+
)
3538
this.buffer.setHistoryProvider(newProvider)
3639
}
3740

3841
stopObservingHistory (editor) {
39-
if (this.existingHistoryProvider == null) { return }
42+
if (this.existingHistoryProvider == null) {
43+
return
44+
}
4045
this.buffer.setHistoryProvider(this.existingHistoryProvider)
4146
this.existingHistoryProvider = null
4247
}
4348

4449
observe (callback) {
45-
if (this.observer != null) { this.observer.dispose() }
50+
if (this.observer != null) {
51+
this.observer.dispose()
52+
}
4653
this.observer = this.buffer.onDidChangeText(callback)
4754
}
4855

4956
stopObserving () {
50-
if (this.observer == null) { return false }
57+
if (this.observer == null) {
58+
return false
59+
}
5160
this.observer.dispose()
5261
this.observer = null
5362
return true

lib/helpers.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import path from 'path'
44

5-
export function getPackageRoot() {
6-
const {resourcePath} = atom.getLoadSettings()
5+
export function getPackageRoot () {
6+
const { resourcePath } = atom.getLoadSettings()
77
const currentFileWasRequiredFromSnapshot = !path.isAbsolute(__dirname)
88
if (currentFileWasRequiredFromSnapshot) {
99
return path.join(resourcePath, 'node_modules', 'snippets')

lib/insertion.js

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
const ESCAPES = {
2-
u: (flags) => {
2+
u: flags => {
33
flags.lowercaseNext = false
44
flags.uppercaseNext = true
55
},
6-
l: (flags) => {
6+
l: flags => {
77
flags.uppercaseNext = false
88
flags.lowercaseNext = true
99
},
10-
U: (flags) => {
10+
U: flags => {
1111
flags.lowercaseAll = false
1212
flags.uppercaseAll = true
1313
},
14-
L: (flags) => {
14+
L: flags => {
1515
flags.uppercaseAll = false
1616
flags.lowercaseAll = true
1717
},
18-
E: (flags) => {
18+
E: flags => {
1919
flags.uppercaseAll = false
2020
flags.lowercaseAll = false
2121
},
@@ -62,21 +62,21 @@ class Insertion {
6262

6363
makeReplacer (replace) {
6464
return function replacer (...match) {
65-
let flags = {
65+
const flags = {
6666
uppercaseAll: false,
6767
lowercaseAll: false,
6868
uppercaseNext: false,
6969
lowercaseNext: false
7070
}
7171
replace = [...replace]
72-
let result = []
72+
const result = []
7373
replace.forEach(token => {
7474
if (typeof token === 'string') {
7575
result.push(transformText(token, flags))
7676
} else if (token.escape) {
7777
ESCAPES[token.escape](flags, result)
7878
} else if (token.backreference) {
79-
let transformed = transformText(match[token.backreference], flags)
79+
const transformed = transformText(match[token.backreference], flags)
8080
result.push(transformed)
8181
}
8282
})
@@ -85,8 +85,10 @@ class Insertion {
8585
}
8686

8787
transform (input) {
88-
let { substitution } = this
89-
if (!substitution) { return input }
88+
const { substitution } = this
89+
if (!substitution) {
90+
return input
91+
}
9092
return input.replace(substitution.find, this.replacer)
9193
}
9294
}

lib/snippet-body-parser.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@ let parser
22
try {
33
parser = require('./snippet-body')
44
} catch (error) {
5-
const {allowUnsafeEval} = require('loophole')
5+
const { allowUnsafeEval } = require('loophole')
66
const fs = require('fs-plus')
77
const PEG = require('pegjs')
88

9-
const grammarSrc = fs.readFileSync(require.resolve('./snippet-body.pegjs'), 'utf8')
9+
const grammarSrc = fs.readFileSync(
10+
require.resolve('./snippet-body.pegjs'),
11+
'utf8'
12+
)
1013
parser = null
11-
allowUnsafeEval(() => parser = PEG.buildParser(grammarSrc))
14+
allowUnsafeEval(() => (parser = PEG.buildParser(grammarSrc)))
1215
}
1316

1417
module.exports = parser

0 commit comments

Comments
 (0)