WIP - add extractor, generate snippet_data
This commit is contained in:
94
node_modules/vfile-message/index.js
generated
vendored
Normal file
94
node_modules/vfile-message/index.js
generated
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
'use strict'
|
||||
|
||||
var stringify = require('unist-util-stringify-position')
|
||||
|
||||
module.exports = VMessage
|
||||
|
||||
// Inherit from `Error#`.
|
||||
function VMessagePrototype() {}
|
||||
VMessagePrototype.prototype = Error.prototype
|
||||
VMessage.prototype = new VMessagePrototype()
|
||||
|
||||
// Message properties.
|
||||
var proto = VMessage.prototype
|
||||
|
||||
proto.file = ''
|
||||
proto.name = ''
|
||||
proto.reason = ''
|
||||
proto.message = ''
|
||||
proto.stack = ''
|
||||
proto.fatal = null
|
||||
proto.column = null
|
||||
proto.line = null
|
||||
|
||||
// Construct a new VMessage.
|
||||
//
|
||||
// Note: We cannot invoke `Error` on the created context, as that adds readonly
|
||||
// `line` and `column` attributes on Safari 9, thus throwing and failing the
|
||||
// data.
|
||||
function VMessage(reason, position, origin) {
|
||||
var parts
|
||||
var range
|
||||
var location
|
||||
|
||||
if (typeof position === 'string') {
|
||||
origin = position
|
||||
position = null
|
||||
}
|
||||
|
||||
parts = parseOrigin(origin)
|
||||
range = stringify(position) || '1:1'
|
||||
|
||||
location = {
|
||||
start: {line: null, column: null},
|
||||
end: {line: null, column: null}
|
||||
}
|
||||
|
||||
// Node.
|
||||
if (position && position.position) {
|
||||
position = position.position
|
||||
}
|
||||
|
||||
if (position) {
|
||||
// Position.
|
||||
if (position.start) {
|
||||
location = position
|
||||
position = position.start
|
||||
} else {
|
||||
// Point.
|
||||
location.start = position
|
||||
}
|
||||
}
|
||||
|
||||
if (reason.stack) {
|
||||
this.stack = reason.stack
|
||||
reason = reason.message
|
||||
}
|
||||
|
||||
this.message = reason
|
||||
this.name = range
|
||||
this.reason = reason
|
||||
this.line = position ? position.line : null
|
||||
this.column = position ? position.column : null
|
||||
this.location = location
|
||||
this.source = parts[0]
|
||||
this.ruleId = parts[1]
|
||||
}
|
||||
|
||||
function parseOrigin(origin) {
|
||||
var result = [null, null]
|
||||
var index
|
||||
|
||||
if (typeof origin === 'string') {
|
||||
index = origin.indexOf(':')
|
||||
|
||||
if (index === -1) {
|
||||
result[1] = origin
|
||||
} else {
|
||||
result[0] = origin.slice(0, index)
|
||||
result[1] = origin.slice(index + 1)
|
||||
}
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
22
node_modules/vfile-message/license
generated
vendored
Normal file
22
node_modules/vfile-message/license
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
113
node_modules/vfile-message/package.json
generated
vendored
Normal file
113
node_modules/vfile-message/package.json
generated
vendored
Normal file
@ -0,0 +1,113 @@
|
||||
{
|
||||
"_from": "vfile-message@^1.0.0",
|
||||
"_id": "vfile-message@1.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==",
|
||||
"_location": "/vfile-message",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "vfile-message@^1.0.0",
|
||||
"name": "vfile-message",
|
||||
"escapedName": "vfile-message",
|
||||
"rawSpec": "^1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/unified/vfile",
|
||||
"/vfile"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz",
|
||||
"_shasum": "5833ae078a1dfa2d96e9647886cd32993ab313e1",
|
||||
"_spec": "vfile-message@^1.0.0",
|
||||
"_where": "/Users/stefanfejes/Projects/30-seconds-of-python-code/node_modules/vfile",
|
||||
"author": {
|
||||
"name": "Titus Wormer",
|
||||
"email": "tituswormer@gmail.com",
|
||||
"url": "https://wooorm.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/vfile/vfile-message/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Titus Wormer",
|
||||
"email": "tituswormer@gmail.com",
|
||||
"url": "https://wooorm.com"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"unist-util-stringify-position": "^1.1.1"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Create a virtual message",
|
||||
"devDependencies": {
|
||||
"browserify": "^16.0.0",
|
||||
"nyc": "^13.0.0",
|
||||
"prettier": "^1.12.1",
|
||||
"remark-cli": "^6.0.0",
|
||||
"remark-preset-wooorm": "^4.0.0",
|
||||
"tape": "^4.0.0",
|
||||
"tinyify": "^2.4.3",
|
||||
"xo": "^0.23.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/vfile/vfile-message#readme",
|
||||
"keywords": [
|
||||
"vfile",
|
||||
"virtual",
|
||||
"message"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "vfile-message",
|
||||
"nyc": {
|
||||
"check-coverage": true,
|
||||
"lines": 100,
|
||||
"functions": 100,
|
||||
"branches": 100
|
||||
},
|
||||
"prettier": {
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"singleQuote": true,
|
||||
"bracketSpacing": false,
|
||||
"semi": false,
|
||||
"trailingComma": "none"
|
||||
},
|
||||
"remarkConfig": {
|
||||
"plugins": [
|
||||
"preset-wooorm"
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vfile/vfile-message.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build-bundle && npm run build-mangle",
|
||||
"build-bundle": "browserify . -s vfileMessage > vfile-message.js",
|
||||
"build-mangle": "browserify . -s vfileMessage -p tinyify > vfile-message.min.js",
|
||||
"format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
|
||||
"test": "npm run format && npm run build && npm run test-coverage",
|
||||
"test-api": "node test",
|
||||
"test-coverage": "nyc --reporter lcov tape test.js"
|
||||
},
|
||||
"version": "1.1.1",
|
||||
"xo": {
|
||||
"prettier": true,
|
||||
"esnext": false,
|
||||
"rules": {
|
||||
"no-var": "off",
|
||||
"prefer-arrow-callback": "off",
|
||||
"object-shorthand": "off"
|
||||
},
|
||||
"ignores": [
|
||||
"vfile-message.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
194
node_modules/vfile-message/readme.md
generated
vendored
Normal file
194
node_modules/vfile-message/readme.md
generated
vendored
Normal file
@ -0,0 +1,194 @@
|
||||
# vfile-message
|
||||
|
||||
[![Build][build-badge]][build]
|
||||
[![Coverage][coverage-badge]][coverage]
|
||||
[![Downloads][downloads-badge]][downloads]
|
||||
[![Chat][chat-badge]][chat]
|
||||
|
||||
Create [vfile][] messages.
|
||||
|
||||
## Installation
|
||||
|
||||
[npm][]:
|
||||
|
||||
```bash
|
||||
npm install vfile-message
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var VMessage = require('vfile-message')
|
||||
|
||||
var message = new VMessage(
|
||||
'`braavo` is misspelt; did you mean `bravo`?',
|
||||
{line: 1, column: 8},
|
||||
'spell:typo'
|
||||
)
|
||||
|
||||
console.log(message)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```js
|
||||
{ [1:8: `braavo` is misspelt; did you mean `bravo`?]
|
||||
reason: '`braavo` is misspelt; did you mean `bravo`?',
|
||||
fatal: null,
|
||||
line: 1,
|
||||
column: 8,
|
||||
location:
|
||||
{ start: { line: 1, column: 8 },
|
||||
end: { line: null, column: null } },
|
||||
source: 'spell',
|
||||
ruleId: 'typo' }
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### `VMessage(reason[, position][, origin])`
|
||||
|
||||
Constructor of a message for `reason` at `position` from `origin`. When
|
||||
an error is passed in as `reason`, copies the stack.
|
||||
|
||||
##### Parameters
|
||||
|
||||
###### `reason`
|
||||
|
||||
Reason for message (`string` or `Error`). Uses the stack and message of the
|
||||
error if given.
|
||||
|
||||
###### `position`
|
||||
|
||||
Place at which the message occurred in a file ([`Node`][node],
|
||||
[`Position`][position], or [`Point`][point], optional).
|
||||
|
||||
###### `origin`
|
||||
|
||||
Place in code the message originates from (`string`, optional).
|
||||
|
||||
Can either be the [`ruleId`][ruleid] (`'rule'`), or a string with both a
|
||||
[`source`][source] and a [`ruleId`][ruleid] delimited with a colon
|
||||
(`'source:rule'`).
|
||||
|
||||
##### Extends
|
||||
|
||||
[`Error`][error].
|
||||
|
||||
##### Returns
|
||||
|
||||
An instance of itself.
|
||||
|
||||
##### Properties
|
||||
|
||||
###### `reason`
|
||||
|
||||
Reason for message (`string`).
|
||||
|
||||
###### `fatal`
|
||||
|
||||
If `true`, marks associated file as no longer processable (`boolean?`). If
|
||||
`false`, necessitates a (potential) change. The value can also be `null` or
|
||||
`undefined`.
|
||||
|
||||
###### `line`
|
||||
|
||||
Starting line of error (`number?`).
|
||||
|
||||
###### `column`
|
||||
|
||||
Starting column of error (`number?`).
|
||||
|
||||
###### `location`
|
||||
|
||||
Full range information, when available ([`Position`][position]). Has `start`
|
||||
and `end` properties, both set to an object with `line` and `column`, set to
|
||||
`number?`.
|
||||
|
||||
###### `source`
|
||||
|
||||
Namespace of warning (`string?`).
|
||||
|
||||
###### `ruleId`
|
||||
|
||||
Category of message (`string?`).
|
||||
|
||||
###### `stack`
|
||||
|
||||
Stack of message (`string?`).
|
||||
|
||||
##### Custom properties
|
||||
|
||||
It’s OK to store custom data directly on the `VMessage`, some of those are
|
||||
handled by [utilities][util].
|
||||
|
||||
###### `file`
|
||||
|
||||
You may add a `file` property with a path of a file (used throughout the
|
||||
[**VFile**][vfile] ecosystem).
|
||||
|
||||
###### `note`
|
||||
|
||||
You may add a `note` property with a long form description of the message
|
||||
(supported by [`vfile-reporter`][reporter]).
|
||||
|
||||
###### `url`
|
||||
|
||||
You may add a `url` property with a link to documentation for the message.
|
||||
|
||||
## Contribute
|
||||
|
||||
See [`contributing.md` in `vfile/vfile`][contributing] for ways to get started.
|
||||
|
||||
This organisation has a [Code of Conduct][coc]. By interacting with this
|
||||
repository, organisation, or community you agree to abide by its terms.
|
||||
|
||||
## License
|
||||
|
||||
[MIT][license] © [Titus Wormer][author]
|
||||
|
||||
<!-- Definitions -->
|
||||
|
||||
[build-badge]: https://img.shields.io/travis/vfile/vfile-message.svg
|
||||
|
||||
[build]: https://travis-ci.org/vfile/vfile-message
|
||||
|
||||
[coverage-badge]: https://img.shields.io/codecov/c/github/vfile/vfile-message.svg
|
||||
|
||||
[coverage]: https://codecov.io/github/vfile/vfile-message
|
||||
|
||||
[downloads-badge]: https://img.shields.io/npm/dm/vfile-message.svg
|
||||
|
||||
[downloads]: https://www.npmjs.com/package/vfile-message
|
||||
|
||||
[chat-badge]: https://img.shields.io/badge/join%20the%20community-on%20spectrum-7b16ff.svg
|
||||
|
||||
[chat]: https://spectrum.chat/unified/vfile
|
||||
|
||||
[npm]: https://docs.npmjs.com/cli/install
|
||||
|
||||
[license]: license
|
||||
|
||||
[author]: https://wooorm.com
|
||||
|
||||
[error]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
|
||||
|
||||
[node]: https://github.com/syntax-tree/unist#node
|
||||
|
||||
[position]: https://github.com/syntax-tree/unist#position
|
||||
|
||||
[point]: https://github.com/syntax-tree/unist#point
|
||||
|
||||
[vfile]: https://github.com/vfile/vfile
|
||||
|
||||
[contributing]: https://github.com/vfile/vfile/blob/master/contributing.md
|
||||
|
||||
[coc]: https://github.com/vfile/vfile/blob/master/code-of-conduct.md
|
||||
|
||||
[util]: https://github.com/vfile/vfile#utilities
|
||||
|
||||
[reporter]: https://github.com/vfile/vfile-reporter
|
||||
|
||||
[ruleid]: #ruleid
|
||||
|
||||
[source]: #source
|
||||
Reference in New Issue
Block a user