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

codespell: workflow, config and some typos fixed #60

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codespell]
skip = .git,*.pdf,*.svg,*.css,*.min.js
# ignore-words-list =
19 changes: 19 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Codespell

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Codespell
uses: codespell-project/actions-codespell@v1
4 changes: 2 additions & 2 deletions docs/js/bootstrap-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@

html.push('</div>');

// Fix #188: this.showToolbar is for extentions
// Fix #188: this.showToolbar is for extensions
if (this.showToolbar || html.length > 2) {
this.$toolbar.append(html.join(''));
}
Expand Down Expand Up @@ -1076,7 +1076,7 @@
column = that.columns[getFieldIndex(that.columns, key)],
j = $.inArray(key, that.header.fields);

// Fix #142: search use formated data
// Fix #142: search use formatted data
value = calculateObjectValue(column,
that.header.formatters[j], [value, item, i], value);

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/generate.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: editor
boostrap: docker
bootstrap: docker
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change looks like might be affecting functioning

from: ubuntu:16.04
title: {{ site.name }}
permalink: /generate
Expand Down
2 changes: 1 addition & 1 deletion tests/test_library.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''

test.py: Python testing to ensure correct formatting and varibles included for
test.py: Python testing to ensure correct formatting and variables included for
metadata in experiments.

Copyright (c) 2017, Vanessa Sochat
Expand Down