Skip to content

Commit

Permalink
Merge pull request #34 from microsoft/updateToDropCustomMetadata
Browse files Browse the repository at this point in the history
Support dropping of custom from metadata
  • Loading branch information
DonJayamanne authored Mar 19, 2024
2 parents e1d337e + 635b28b commit d8200a8
Show file tree
Hide file tree
Showing 6 changed files with 242 additions and 182 deletions.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Tab indentation
[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true

# The indent size used in the `package.json` file cannot be changed
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
[{.travis.yml,npm-shrinkwrap.json,package.json}]
indent_style = space
indent_size = 4
7 changes: 7 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
singleQuote: true,
printWidth: 120,
tabWidth: 4,
endOfLine: 'auto',
trailingComma: 'none',
};
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-jupyter-cell-tags",
"displayName": "Jupyter Cell Tags",
"description": "Jupyter Cell Tags support for VS Code",
"version": "0.1.8",
"version": "0.1.9",
"publisher": "ms-toolsai",
"preview": true,
"icon": "icon.png",
Expand All @@ -14,7 +14,7 @@
"name": "Microsoft Corporation"
},
"engines": {
"vscode": "^1.72.0"
"vscode": "^1.88.0"
},
"categories": [
"Notebooks"
Expand Down Expand Up @@ -132,4 +132,4 @@
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
}
}
}
Loading

0 comments on commit d8200a8

Please sign in to comment.