Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up globals. #26222

Merged
merged 2 commits into from
Apr 9, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 1 addition & 3 deletions build/change-version.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
#!/usr/bin/env node

'use strict'

/*!
* Script to update version number references in the project.
* Copyright 2017-2018 The Bootstrap Authors
* Copyright 2017-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

/* global Set */
'use strict'

const fs = require('fs')
const path = require('path')
Expand Down
1 change: 0 additions & 1 deletion build/lint-vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

/*!
* Script to find unused Sass variables.
*
* Copyright 2017-2018 The Bootstrap Authors
* Copyright 2017-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
Expand Down
7 changes: 7 additions & 0 deletions build/workbox.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Script to generate our docs service worker.
* Copyright 2017-2018 The Bootstrap Authors
* Copyright 2017-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

'use strict'

const fs = require('fs')
Expand Down
8 changes: 4 additions & 4 deletions js/tests/unit/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"env": {
"es6": false,
"qunit": true,
"jquery": true
"jquery": true,
"qunit": true
},
"globals": {
"bootstrap": false,
"sinon": false,
"Util": false,
"bootstrap": false
"Util": false
},
"parserOptions": {
"ecmaVersion": 5,
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// package metadata file for Meteor.js

/* global Package:true */
/* eslint-env meteor */

Package.describe({
name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
Expand Down